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 f68cc9a commit e7f1209Copy full SHA for e7f1209
plugins/commands.py plugins/start.pyplugins/commands.py renamed to plugins/start.py
@@ -40,12 +40,13 @@ async def start_command(client: Client, message: Message):
40
ids = [int(int(argument[1]) / abs(CHANNEL_ID))]
41
except:
42
return
43
+ temp_msg = await message.reply("Please wait...")
44
try:
45
messages = await get_messages(client, ids)
46
47
await message.reply_text("Something went wrong..!")
48
- print(len(messages))
49
+ await temp_msg.delete()
50
for msg in messages:
51
52
await msg.copy(chat_id=message.from_user.id, reply_markup = None)
0 commit comments