mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-01 09:13:20 +01:00
[rutube:playlist] Fix suitable (closes #14166)
This commit is contained in:
parent
806498cf2f
commit
f12a6e88b2
@ -265,8 +265,10 @@ class RutubePlaylistIE(RutubePlaylistBaseIE):
|
|||||||
|
|
||||||
_PAGE_TEMPLATE = 'http://rutube.ru/api/playlist/%s/%s/?page=%s&format=json'
|
_PAGE_TEMPLATE = 'http://rutube.ru/api/playlist/%s/%s/?page=%s&format=json'
|
||||||
|
|
||||||
@staticmethod
|
@classmethod
|
||||||
def suitable(url):
|
def suitable(cls, url):
|
||||||
|
if not super(RutubePlaylistIE, cls).suitable(url):
|
||||||
|
return False
|
||||||
params = compat_parse_qs(compat_urllib_parse_urlparse(url).query)
|
params = compat_parse_qs(compat_urllib_parse_urlparse(url).query)
|
||||||
return params.get('pl_type', [None])[0] and int_or_none(params.get('pl_id', [None])[0])
|
return params.get('pl_type', [None])[0] and int_or_none(params.get('pl_id', [None])[0])
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user