1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-04-03 19:01:08 +02:00

[Fancode] Fix live streams ()

Authored by: zenerdi0de
This commit is contained in:
zenerdi0de 2021-09-13 21:10:32 +05:30 committed by GitHub
parent ea706726d6
commit 9c95ac677e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -173,7 +173,7 @@ class FancodeLiveIE(FancodeVodIE):
match_info = try_get(info_json, lambda x: x['data']['match'])
if match_info.get('status') != "LIVE":
if match_info.get('streamingStatus') != "STARTED":
raise ExtractorError('The stream can\'t be accessed', expected=True)
self._check_login_required(match_info.get('isUserEntitled'), True) # all live streams are premium only