mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
parent
ea706726d6
commit
9c95ac677e
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ def _real_extract(self, url):
|
||||||
|
|
||||||
match_info = try_get(info_json, lambda x: x['data']['match'])
|
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)
|
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
|
self._check_login_required(match_info.get('isUserEntitled'), True) # all live streams are premium only
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue