From 91dcde8a381d1c442e5b56fa1d3652fdd3f4496d Mon Sep 17 00:00:00 2001 From: Remita Amine Date: Mon, 16 Nov 2020 21:27:51 +0100 Subject: [PATCH] [lrt] fix extraction with empty tags(closes #20264) --- youtube_dl/extractor/lrt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/lrt.py b/youtube_dl/extractor/lrt.py index a89434adb..89d549858 100644 --- a/youtube_dl/extractor/lrt.py +++ b/youtube_dl/extractor/lrt.py @@ -61,7 +61,7 @@ class LRTIE(InfoExtractor): json_ld_data = self._search_json_ld(webpage, video_id) tags = [] - for tag in media.get('tags', []): + for tag in (media.get('tags') or []): tag_name = tag.get('name') if not tag_name: continue