Revert "Change some ifs"

This reverts commit 735f77724e.
This commit is contained in:
blank X 2021-01-14 23:18:55 +07:00
parent 616b9c366c
commit 990be67d56
1 changed files with 3 additions and 1 deletions

View File

@ -70,7 +70,7 @@ async def _check_video(video):
proc = await asyncio.create_subprocess_exec(sys.executable, 'youtube-dl-injected.py', '--dump-single-json', video['link'], stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE) proc = await asyncio.create_subprocess_exec(sys.executable, 'youtube-dl-injected.py', '--dump-single-json', video['link'], stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE)
stdout, stderr = await proc.communicate() stdout, stderr = await proc.communicate()
if not proc.returncode: if not proc.returncode:
if not waited and video_json.get('is_live'): if not waited:
first_try_live = True first_try_live = True
break break
wait_time = 30 wait_time = 30
@ -89,6 +89,8 @@ async def _check_video(video):
await asyncio.sleep(wait_time) await asyncio.sleep(wait_time)
waited = True waited = True
video_json = json.loads(stdout) video_json = json.loads(stdout)
if not video_json.get('is_live') and first_try_live:
first_try_live = False
video_queue.put_nowait((video_json, time.time(), first_try_live)) video_queue.put_nowait((video_json, time.time(), first_try_live))
video_queue = asyncio.Queue() video_queue = asyncio.Queue()