[nrktv:seriebase] Fix extraction (#22596)

This commit is contained in:
Martin Polden 2019-10-04 13:57:18 +02:00 committed by Sergey M
parent 894b3826f5
commit ca20b13048
1 changed files with 1 additions and 1 deletions

View File

@ -406,7 +406,7 @@ class NRKTVSerieBaseIE(InfoExtractor):
def _extract_series(self, webpage, display_id, fatal=True):
config = self._parse_json(
self._search_regex(
(r'INITIAL_DATA_*\s*=\s*({.+?})\s*;',
(r'INITIAL_DATA(?:_V\d)?_*\s*=\s*({.+?})\s*;',
r'({.+?})\s*,\s*"[^"]+"\s*\)\s*</script>'),
webpage, 'config', default='{}' if not fatal else NO_DEFAULT),
display_id, fatal=False)