diff --git a/youtube_dl/extractor/vlaretv.py b/youtube_dl/extractor/vlaretv.py index 900260ece..264e19518 100644 --- a/youtube_dl/extractor/vlaretv.py +++ b/youtube_dl/extractor/vlaretv.py @@ -21,7 +21,7 @@ class VlaretvPlaylistIE(InfoExtractor): webpage = self._download_webpage(url, playlist_id) urls = re.findall(r'(.+?) \| Vlare', webpage, 'title') - + # When playlist points to deleted video there is an "error" in the url (Ex. https://vlare.tv/v/error/3257) entries = [self.url_result(urljoin('https://vlare.tv', u)) for u in urls if 'error' not in u]