mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-25 18:04:33 +01:00
Add suitable method for BandcampUser
This commit is contained in:
parent
39506ecd2c
commit
dcec01dc12
@ -430,6 +430,12 @@ class BandcampUserIE(InfoExtractor):
|
|||||||
'playlist_count': 1,
|
'playlist_count': 1,
|
||||||
}]
|
}]
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def suitable(cls, url):
|
||||||
|
return (False
|
||||||
|
if BandcampAlbumIE.suitable(url)
|
||||||
|
else super(BandcampUserIE, cls).suitable(url))
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
uploader = self._match_id(url)
|
uploader = self._match_id(url)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user