summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2020-01-18 14:46:38 +0700
committerSergey M․ <dstftw@gmail.com>2020-01-18 14:46:38 +0700
commitd9a2f8679136228ddead5f09bb17e006cccaeffe (patch)
treea2d5b8b3a2392a88e0e1f3f41810a31e8958208c
parentc968f738df8e21d7a7f2f86f697207e0476b76ef (diff)
downloadyoutube-dl-d9a2f8679136228ddead5f09bb17e006cccaeffe.tar.gz
youtube-dl-d9a2f8679136228ddead5f09bb17e006cccaeffe.tar.xz
youtube-dl-d9a2f8679136228ddead5f09bb17e006cccaeffe.zip
[ivi:compilation] Fix entries extraction (closes #23770)
-rw-r--r--youtube_dl/extractor/ivi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/ivi.py b/youtube_dl/extractor/ivi.py
index a502e8806..b5a740a01 100644
--- a/youtube_dl/extractor/ivi.py
+++ b/youtube_dl/extractor/ivi.py
@@ -239,7 +239,7 @@ class IviCompilationIE(InfoExtractor):
             self.url_result(
                 'http://www.ivi.ru/watch/%s/%s' % (compilation_id, serie), IviIE.ie_key())
             for serie in re.findall(
-                r'<a href="/watch/%s/(\d+)"[^>]+data-id="\1"' % compilation_id, html)]
+                r'<a\b[^>]+\bhref=["\']/watch/%s/(\d+)["\']' % compilation_id, html)]
 
     def _real_extract(self, url):
         mobj = re.match(self._VALID_URL, url)