Merge pull request #1155 from vitiko98/fix-argenteam

Fix loop with alternative titles in Argenteam provider
This commit is contained in:
morpheus65535 2020-10-16 16:38:03 -04:00 committed by GitHub
commit eb2f85a1de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -266,15 +266,14 @@ class ArgenteamProvider(Provider, ProviderSubtitleArchiveMixin):
def list_subtitles(self, video, languages):
if isinstance(video, Episode):
titles = [video.series] + video.alternative_series
titles = [video.series] + video.alternative_series[:2]
else:
titles = [video.title] + video.alternative_titles
titles = [video.title] + video.alternative_titles[:2]
for title in titles:
subs = self.query(title, video, titles=titles)
if subs:
return subs
time.sleep(self.multi_result_throttle)
return []