From 3d89341b4748f430e7a87000cfd987deec2e10c6 Mon Sep 17 00:00:00 2001 From: pukkandan Date: Tue, 11 May 2021 23:29:05 +0530 Subject: [PATCH] [common] bugfix for when `compat_opts` is not given --- yt_dlp/extractor/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/extractor/common.py b/yt_dlp/extractor/common.py index 99695e14f..cd3aa52a0 100644 --- a/yt_dlp/extractor/common.py +++ b/yt_dlp/extractor/common.py @@ -559,7 +559,7 @@ class InfoExtractor(object): ie_result['__x_forwarded_for_ip'] = self._x_forwarded_for_ip subtitles = ie_result.get('subtitles') if (subtitles and 'live_chat' in subtitles - and 'no-live-chat' in self._downloader.params.get('compat_opts')): + and 'no-live-chat' in self._downloader.params.get('compat_opts', [])): del subtitles['live_chat'] return ie_result except GeoRestrictedError as e: