1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-02-03 04:52:51 +08:00

[twitch] Drop log line if id can't be extracted from URL

This commit is contained in:
Luc Ritchie 2018-01-02 13:22:39 -05:00
parent e129469557
commit eb26087326

View File

@ -366,7 +366,6 @@ class TwitchPlaylistBaseIE(TwitchBaseIE):
video_id = 'v%s' % TwitchVodIE._match_id(url)
return self.url_result(url, TwitchVodIE.ie_key(), video_id=video_id)
except AssertionError:
self.to_screen('Unable to match video ID from URL: %s' % url)
return self.url_result(url)
def _extract_playlist_page(self, response):