We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66d690a commit eaa9d7eCopy full SHA for eaa9d7e
plugins/commands.py
@@ -50,11 +50,11 @@ async def start_command(client: Client, message: Message):
50
return
51
for msg in msgs:
52
try:
53
- await msg.copy(chat_id=message.from_user.id)
+ await msg.copy(chat_id=message.from_user.id, reply_markup = None)
54
await asyncio.sleep(0.5)
55
except FloodWait as e:
56
await asyncio.sleep(e.x)
57
58
except:
59
pass
60
0 commit comments