Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/8c4e83c18d56c96a036bbe8aa1cd268448099766 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix subliminal core: wrong providers being restarted

pull/1773/head v1.0.4-beta.10
Vitiko 3 years ago
parent aaf4b7c673
commit 8c4e83c18d

@ -131,6 +131,10 @@ class SZProviderPool(ProviderPool):
# Restart providers with new configs
for key, val in provider_configs.items():
# Don't restart providers that are not enabled
if key not in self.providers:
continue
# key: provider's name; val: config dict
old_val = self.provider_configs.get(key)

Loading…
Cancel
Save