diff --git a/callmebyyourbot/__init__.py b/callmebyyourbot/__init__.py index 621f2d3..0cfdb26 100644 --- a/callmebyyourbot/__init__.py +++ b/callmebyyourbot/__init__.py @@ -14,6 +14,7 @@ Based on DepyTG: https://github.com/Depaulicious/DepyTG""" def send_help(token: AnyStr, msg: types.Message): send_msg = methods.sendMessage(msg.chat.id, HELP_TEXT) send_msg.reply_to_message_id = msg.message_id + send_msg.disable_web_page_preview = True send_msg(token)