mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 09:40:30 +00:00
[twitch:stream] Remove fallback to profile extraction when stream is offline
Main page does not contain profile videos anymore
This commit is contained in:
parent
d8dbf8707d
commit
cc764a6da8
@ -400,11 +400,8 @@ def _real_extract(self, url):
|
|||||||
'kraken/streams/%s' % channel_id, channel_id,
|
'kraken/streams/%s' % channel_id, channel_id,
|
||||||
'Downloading stream JSON').get('stream')
|
'Downloading stream JSON').get('stream')
|
||||||
|
|
||||||
# Fallback on profile extraction if stream is offline
|
|
||||||
if not stream:
|
if not stream:
|
||||||
return self.url_result(
|
raise ExtractorError('%s is offline' % channel_id, expected=True)
|
||||||
'http://www.twitch.tv/%s/profile' % channel_id,
|
|
||||||
'TwitchProfile', channel_id)
|
|
||||||
|
|
||||||
# Channel name may be typed if different case than the original channel name
|
# Channel name may be typed if different case than the original channel name
|
||||||
# (e.g. http://www.twitch.tv/TWITCHPLAYSPOKEMON) that will lead to constructing
|
# (e.g. http://www.twitch.tv/TWITCHPLAYSPOKEMON) that will lead to constructing
|
||||||
|
Loading…
Reference in New Issue
Block a user