Skip to content

Commit

Permalink
Reduced throttle from 24 hours to 6 before retrying Opensubtitles.com…
Browse files Browse the repository at this point in the history
… API on DownloadLimitExceeded
  • Loading branch information
alvitali authored Dec 23, 2024
1 parent 3209355 commit d5a290c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bazarr/app/get_providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def provider_throttle_map():
},
"opensubtitlescom": {
TooManyRequests: (datetime.timedelta(minutes=1), "1 minute"),
DownloadLimitExceeded: (datetime.timedelta(hours=24), "24 hours"),
DownloadLimitExceeded: (datetime.timedelta(hours=6), "6 hours"),
},
"addic7ed": {
DownloadLimitExceeded: (datetime.timedelta(hours=3), "3 hours"),
Expand Down

0 comments on commit d5a290c

Please # to comment.