You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I receive a callback from a Telegram channel, the message text does not contain html code callbackQuery.message.text
even though the message contains HTML code when i sent it to this channel. const sendMessageToTelegram = async (bot, data) => { try { bot.sendMessage(config.SEND_ID, ` ID :<code>${String(data.user_id)}</code>`, CHARGE_MARKUP.IDMarkup(data._id)); } catch (error) { console.log(error); } };
The text was updated successfully, but these errors were encountered:
When I receive a callback from a Telegram channel, the message text does not contain html code
callbackQuery.message.text
even though the message contains HTML code when i sent it to this channel.
const sendMessageToTelegram = async (bot, data) => { try { bot.sendMessage(config.SEND_ID, ` ID :<code>${String(data.user_id)}</code>`, CHARGE_MARKUP.IDMarkup(data._id)); } catch (error) { console.log(error); } };
The text was updated successfully, but these errors were encountered: