Add 30s to sleep

This commit is contained in:
blank X 2021-04-10 12:51:46 +07:00
parent 5488fb457c
commit a19fa7097c
Signed by: blankie
GPG Key ID: CC15FC822C7F61F5
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ async def _video_worker():
is_manifest = True
break
if is_manifest:
await asyncio.sleep(video_json['duration'])
await asyncio.sleep(video_json['duration'] + 30)
try:
await client.send_message(config['config']['storage_chat_id'], f'Failed to download video {video_json["id"]}, please check logs', parse_mode=None)
except BaseException: