diff options
author | Alex Meyer <[email protected]> | 2024-05-30 22:16:24 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2024-05-30 22:16:24 -0400 |
commit | 77302fad218a3c14c91c3d28074f30e02ffe9b77 (patch) | |
tree | e431e80f87009d67628f0cbf840ee9277aca43b7 | |
parent | b7e6de71ffe977a5b2fc71d3b61545226af83395 (diff) | |
download | bazarr-77302fad218a3c14c91c3d28074f30e02ffe9b77.tar.gz bazarr-77302fad218a3c14c91c3d28074f30e02ffe9b77.zip |
Fixed throttled_providers.dat resetv1.4.3-beta.42v1.4.3
-rw-r--r-- | bazarr/app/get_providers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bazarr/app/get_providers.py b/bazarr/app/get_providers.py index d7a61326f..bc251a4e1 100644 --- a/bazarr/app/get_providers.py +++ b/bazarr/app/get_providers.py @@ -496,7 +496,7 @@ def get_throttled_providers(): except Exception: # set empty content in throttled_providers.dat logging.error("Invalid content in throttled_providers.dat. Resetting") - set_throttled_providers(providers) + set_throttled_providers(str(providers)) finally: return providers |