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
if user_id:
context.bot.copy_message(
message_id=update.message.message_id,
chat_id=user_id,
from_chat_id=update.message.chat_id
)
else:
if update.message.reply_to_message.from_user.is_bot: #Checking that reply_to_message was reply to bot
context.bot.send_message(
chat_id=update.message.chat_id,
text=WRONG_REPLY
)
WRONG_REPLY will be send only for a bot's messages
The text was updated successfully, but these errors were encountered:
WRONG_REPLY will be send only for a bot's messages
The text was updated successfully, but these errors were encountered: