diff --git a/yt_dlp/extractor/goplay.py b/yt_dlp/extractor/goplay.py index 751b8d5ec2..6e69492aae 100644 --- a/yt_dlp/extractor/goplay.py +++ b/yt_dlp/extractor/goplay.py @@ -78,7 +78,7 @@ class GoPlayIE(InfoExtractor): def _find_json(self, s): return self._search_json( - r'\w+\s*:\s*', s, 'next js data', None, contains_pattern=r'\[(?s:.+)\]', default=[]) + r'\w+\s*:\s*', s, 'next js data', None, contains_pattern=r'\[(?s:.+)\]', default=None) def _real_extract(self, url): display_id = self._match_id(url)