Fix double
Browse files
akn/AllDownloaderBot/main.py
CHANGED
@@ -454,9 +454,10 @@ async def tiktok_downloader(client: Client, message: Message):
|
|
454 |
]
|
455 |
),
|
456 |
)
|
|
|
457 |
except ChatAdminRequired:
|
458 |
return await message.reply_text("Chat admins Required: before /addjoin username without @ and add bot to your channel as admin")
|
459 |
-
|
460 |
query_url = message.text.split(" ", 1)[1] if len(message.command) > 1 else None
|
461 |
if not query_url:
|
462 |
return await message.reply_text("?")
|
|
|
454 |
]
|
455 |
),
|
456 |
)
|
457 |
+
return
|
458 |
except ChatAdminRequired:
|
459 |
return await message.reply_text("Chat admins Required: before /addjoin username without @ and add bot to your channel as admin")
|
460 |
+
|
461 |
query_url = message.text.split(" ", 1)[1] if len(message.command) > 1 else None
|
462 |
if not query_url:
|
463 |
return await message.reply_text("?")
|