about summary refs log tree commit diff
path: root/youtube_dl/extractor/common.py
diff options
context:
space:
mode:
authordirkf <fieldhouse@gmx.net>2023-02-14 02:47:09 +0000
committerdirkf <fieldhouse@gmx.net>2023-02-14 02:53:16 +0000
commit42b098dd79e91295376ca98f394876555481a3eb (patch)
tree640d8a7fc761fd384fccd6c6a65ec22b8ab0d57e /youtube_dl/extractor/common.py
parent6f8c2635a573c84ef66c02f73b4aeff1cc36ae4e (diff)
downloadyoutube-dl-42b098dd79e91295376ca98f394876555481a3eb.tar.gz
youtube-dl-42b098dd79e91295376ca98f394876555481a3eb.tar.xz
youtube-dl-42b098dd79e91295376ca98f394876555481a3eb.zip
[InfoExtractor] Handle unquoted values in OpenGraph searches
Diffstat (limited to 'youtube_dl/extractor/common.py')
-rw-r--r--youtube_dl/extractor/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
index a0a796d7b..7244e5df6 100644
--- a/youtube_dl/extractor/common.py
+++ b/youtube_dl/extractor/common.py
@@ -1087,7 +1087,7 @@ class InfoExtractor(object):
     # Helper functions for extracting OpenGraph info
     @staticmethod
     def _og_regexes(prop):
-        content_re = r'content=(?:"([^"]+?)"|\'([^\']+?)\'|\s*([^\s"\'=<>`]+?))'
+        content_re = r'content=(?:"([^"]+?)"|\'([^\']+?)\'|\s*([^\s"\'=<>`]+?)(?=\s|/?>))'
         property_re = (r'(?:name|property)=(?:\'og[:-]%(prop)s\'|"og[:-]%(prop)s"|\s*og[:-]%(prop)s\b)'
                        % {'prop': re.escape(prop)})
         template = r'<meta[^>]+?%s[^>]+?%s'