diff --git a/youtube_dl/extractor/metaebene.py b/youtube_dl/extractor/metaebene.py index ac916f479..21e1d65c6 100644 --- a/youtube_dl/extractor/metaebene.py +++ b/youtube_dl/extractor/metaebene.py @@ -178,7 +178,7 @@ class MetaebeneIE(InfoExtractor): # The "Die Gesellschafter" series is discontinued and the description can't be extracted easily. # This is a workaround to suppress the warning and thus make it testable and avoid bug reports. - if re.match(r'https?://(?:www\.)?diegesellschafter.metaebene.me/(?P[^-]+)[^\s]*', url): + if re.match(r'https?://(?:www\.)?diegesellschafter.metaebene.me[^\s]*', url): description = None else: description = self._og_search_description(webpage)