1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-01 09:50:05 +02:00

[extractor/twitch] Fix is_live (#6500)

Closes #6494
Authored by: elyse0
This commit is contained in:
Elyse 2023-03-10 01:12:38 -06:00
parent 2d1655493f
commit c222f6cbfc

View File

@ -456,7 +456,7 @@ def _extract_info_gql(self, info, item_id):
thumbnail = url_or_none(info.get('previewThumbnailURL'))
is_live = None
if thumbnail:
if thumbnail.endswith('/404_processing_{width}x{height}.png'):
if re.findall(r'/404_processing_[^.?#]+\.png', thumbnail):
is_live, thumbnail = True, None
else:
is_live = False