Browse Source

[spankbang] Improve removed video detection (#23423)

Sergey M․ 5 years ago
parent
commit
0a02732b56
1 changed files with 1 additions and 1 deletions
  1. 1 1
      youtube_dl/extractor/spankbang.py

+ 1 - 1
youtube_dl/extractor/spankbang.py

@@ -65,7 +65,7 @@ class SpankBangIE(InfoExtractor):
             url.replace('/%s/embed' % video_id, '/%s/video' % video_id),
             url.replace('/%s/embed' % video_id, '/%s/video' % video_id),
             video_id, headers={'Cookie': 'country=US'})
             video_id, headers={'Cookie': 'country=US'})
 
 
-        if re.search(r'<[^>]+\bid=["\']video_removed', webpage):
+        if re.search(r'<[^>]+\b(?:id|class)=["\']video_removed', webpage):
             raise ExtractorError(
             raise ExtractorError(
                 'Video %s is not available' % video_id, expected=True)
                 'Video %s is not available' % video_id, expected=True)