From a186e64893fd71d986ef922d9d90cf0b9435ae41 Mon Sep 17 00:00:00 2001 From: morpheus65535 Date: Wed, 23 Oct 2024 18:35:09 -0400 Subject: [PATCH] Fixed subdl to not ignore movies subtitles by erroneously check for season packs. #2725 --- custom_libs/subliminal_patch/providers/subdl.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/custom_libs/subliminal_patch/providers/subdl.py b/custom_libs/subliminal_patch/providers/subdl.py index 102125eae..663e18399 100644 --- a/custom_libs/subliminal_patch/providers/subdl.py +++ b/custom_libs/subliminal_patch/providers/subdl.py @@ -188,7 +188,11 @@ class SubdlProvider(ProviderRetryMixin, Provider): if len(result['subtitles']): for item in result['subtitles']: - if item.get('episode_from', False) == item.get('episode_end', False): # ignore season packs + if (isinstance(self.video, Episode) and + item.get('episode_from', False) != item.get('episode_end', False)): + # ignore season packs + continue + else: subtitle = SubdlSubtitle( language=Language.fromsubdl(item['language']), forced=self._is_forced(item),