[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 committed by GitHub
parent c9abebb851
commit 0551511b45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -456,7 +456,7 @@ class TwitchVodIE(TwitchBaseIE):
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