[vlive:playlist] Prevent VLiveIE matching playlist URLs
This commit is contained in:
parent
9a0458a494
commit
7acd0b1117
@ -49,6 +49,10 @@ class VLiveIE(InfoExtractor):
|
||||
},
|
||||
}]
|
||||
|
||||
@classmethod
|
||||
def suitable(cls, url):
|
||||
return False if VLivePlaylistIE.suitable(url) else super(VLiveIE, cls).suitable(url)
|
||||
|
||||
def _real_extract(self, url):
|
||||
video_id = self._match_id(url)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user