Skip to content

Commit

Permalink
Update dowloader.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Nirmalraj10567 authored Mar 8, 2021
1 parent 8c29747 commit cf85dcf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bot/plugins/helpers/dowloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ async def fileDownload(client, bot):
file_path = ''
now = time.time()
upload_server = "MixDrop"
await mixFileup(file_path,client, bot, now)
#await mixFileup(file_path,client, bot, now)
userMsg = await client.edit_message_text(
chat_id=bot.from_user.id,
message_id=bot.message.message_id,
Expand All @@ -34,8 +34,8 @@ async def fileDownload(client, bot):
except FloodWait as e:
print(time.sleep(e.x))

if upload_server == "MixDrop":
await mixFileup(file_path,client, bot, now)
# if upload_server == "MixDrop":
await mixFileup(file_path,client, bot, now)
if upload_server == "File.io":
await fileIO(file_path, client, bot, now)

Expand Down

0 comments on commit cf85dcf

Please sign in to comment.