no log: another fix for os.com

This commit is contained in:
morpheus65535 2021-10-10 20:49:20 -04:00
parent 249437deb4
commit 779cac1448
1 changed files with 4 additions and 2 deletions

View File

@ -279,14 +279,16 @@ class OpenSubtitlesComProvider(ProviderRetryMixin, Provider):
('languages', langs.lower()),
('moviehash', hash),
('parent_feature_id', title_id),
('season_number', self.video.season)),
('season_number', self.video.season),
('query', os.path.basename(self.video.name))),
timeout=30)
else:
res = self.session.get(self.server_url + 'subtitles',
params=(('foreign_parts_only', forced),
('id', title_id),
('languages', langs.lower()),
('moviehash', hash)),
('moviehash', hash),
('query', os.path.basename(self.video.name))),
timeout=30)
if res.status_code == 429: