yagop / node-telegram-bot-api

Telegram Bot API for NodeJS
MIT License
8.17k stars 1.5k forks source link

How to know texts are received from a reply message or not #1039

Closed Hasanch1994 closed 1 year ago

Hasanch1994 commented 1 year ago

hey. I just want to want whether the text received in bot.on("message") is from a reply or not.

danielperez9430 commented 1 year ago
bot.on("message", (msg) => {
  if(msg.reply_to_message) {
   // The message is a reply
  }
})