How can I fix this error in JS?
error_code: 403, description: 'Forbidden: bot was blocked by the user'
This initial code
bot.start( (ctx) => {
console.log(ctx.chat.id)
if (newClient(ctx.message.chat.id)) {
createLog(ctx.message.chat.id)
ctx.reply("Message")
} else {
ctx.reply("Message")
}
})