From a0e3c7e18c9f610dcc9aac63366add7d9777abba Mon Sep 17 00:00:00 2001 From: "Antonio J. Delgado" Date: Sun, 10 Aug 2025 12:20:11 +0300 Subject: [PATCH] all subs as list --- get_youtube_videos/get_youtube_videos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get_youtube_videos/get_youtube_videos.py b/get_youtube_videos/get_youtube_videos.py index 1ae7b6a..e0dffec 100644 --- a/get_youtube_videos/get_youtube_videos.py +++ b/get_youtube_videos/get_youtube_videos.py @@ -283,7 +283,7 @@ class GetYoutubeVideos: if not video_info: break if video_info['subtitles']: - if self.config['subtitle_langs'] == 'all': + if self.config['subtitle_langs'] == ['all']: downloadable_subtitles = video_info['subtitles'] else: for subtitle in self.config['subtitle_langs']: