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

Fixed force saving provider triggering testing

(cherry picked from commit 65cb1ccafd54479fa3fca1f1eaa4b96222b0176b)
pull/9446/head
Mark McDowall 1 year ago committed by Bogdan
parent ed54d071c4
commit 318d59bb99

@ -94,8 +94,8 @@ namespace Radarr.Api.V3
var hasDefinitionChanged = STJson.ToJson(existingDefinition) != STJson.ToJson(providerDefinition) ||
STJson.ToJson(existingDefinition.Settings) != STJson.ToJson(providerDefinition.Settings);
// Only test existing definitions if it is enabled and forceSave isn't set or the definition has changed.
if (providerDefinition.Enable && (!forceSave || hasDefinitionChanged))
// Only test existing definitions if it is enabled and forceSave isn't set and the definition has changed.
if (providerDefinition.Enable && !forceSave && hasDefinitionChanged)
{
Test(providerDefinition, true);
}

Loading…
Cancel
Save