[muenchentv] Fix extraction (Closes #10313)
[youtube-dl] / youtube_dl / extractor / muenchentv.py
index c7f6beb9c703de0434a8ab4e9a41df3df16c2d81..d9f17613633d245283f5f5745acca2feb273cbf5 100644 (file)
@@ -36,7 +36,7 @@ class MuenchenTVIE(InfoExtractor):
         title = self._live_title(self._og_search_title(webpage))
 
         data_js = self._search_regex(
-            r'(?s)\nplaylist:\s*(\[.*?}\]),related:',
+            r'(?s)\nplaylist:\s*(\[.*?}\]),',
             webpage, 'playlist configuration')
         data_json = js_to_json(data_js)
         data = json.loads(data_json)[0]
@@ -73,4 +73,3 @@ class MuenchenTVIE(InfoExtractor):
             'is_live': True,
             'thumbnail': thumbnail,
         }
-