[vlive:playlist] Prevent VLiveIE matching playlist URLs

This commit is contained in:
Corey Nicholson 2017-07-09 13:23:43 +00:00
parent 9a0458a494
commit 7acd0b1117

View File

@ -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)