Simple string change

This commit is contained in:
Lucas Gabriel 2024-06-02 13:27:01 +00:00
parent 74176098fc
commit 44c346c407
10 changed files with 10 additions and 10 deletions

View file

@ -24,5 +24,5 @@ module.exports = function(bot, msg) {
const message = `*Your name is:* ${userName}\n${haveUsername}\n*Your ID is:* ${userId}\n*You are a bot:* ${isBot}\n*Your language:* ${userLang}\n\n${userPremiumOutput}`;
bot.sendMessage(chatId, message, { parse_mode: 'Markdown' })
.catch(error => console.error('WARN: Message cannot be sent:', error));
.catch(error => console.error('WARN: Message cannot be sent: ', error));
}