diff options
| -rw-r--r-- | youtube_dl/extractor/youtube.py | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index 052f6922a..824335d0a 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -693,7 +693,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):              'only_matching': True,          },          { -            # Title with JS-like syntax "};" +            # Title with JS-like syntax "};" (see https://github.com/rg3/youtube-dl/issues/7468)              'url': 'https://www.youtube.com/watch?v=lsguqyKfVQg',              'info_dict': {                  'id': 'lsguqyKfVQg', @@ -708,6 +708,11 @@ class YoutubeIE(YoutubeBaseInfoExtractor):                  'skip_download': True,              },          }, +        { +            # Tags with '};' (see https://github.com/rg3/youtube-dl/issues/7468) +            'url': 'https://www.youtube.com/watch?v=Ms7iBXnlUO8', +            'only_matching': True, +        },      ]      def __init__(self, *args, **kwargs): | 
