summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2020-07-11 18:27:19 +0700
committerSergey M․ <dstftw@gmail.com>2020-07-11 18:27:19 +0700
commit718393c632df5106df92c60c650f52d86a9a3510 (patch)
tree88d77c13c95b6889e0351fcd5572adb0a3fb5701
parent07af16b92ef52ac29ecd7f1defdca89295fa611c (diff)
[wistia] Restrict embed regex (closes #25969)
-rw-r--r--youtube_dl/extractor/wistia.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/wistia.py b/youtube_dl/extractor/wistia.py
index 168e5e901..77febd2eb 100644
--- a/youtube_dl/extractor/wistia.py
+++ b/youtube_dl/extractor/wistia.py
@@ -56,7 +56,7 @@ class WistiaIE(InfoExtractor):
urls.append(unescapeHTML(match.group('url')))
for match in re.finditer(
r'''(?sx)
- <div[^>]+class=(["']).*?\bwistia_async_(?P<id>[a-z0-9]{10})\b.*?\2
+ <div[^>]+class=(["'])(?:(?!\1).)*?\bwistia_async_(?P<id>[a-z0-9]{10})\b(?:(?!\1).)*?\1
''', webpage):
urls.append('wistia:%s' % match.group('id'))
for match in re.finditer(r'(?:data-wistia-?id=["\']|Wistia\.embed\(["\']|id=["\']wistia_)(?P<id>[a-z0-9]{10})', webpage):