From 65cb1ccafd54479fa3fca1f1eaa4b96222b0176b Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sun, 19 Nov 2023 21:02:28 -0800 Subject: [PATCH] Fixed force saving provider triggering testing --- src/Sonarr.Api.V3/ProviderControllerBase.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Sonarr.Api.V3/ProviderControllerBase.cs b/src/Sonarr.Api.V3/ProviderControllerBase.cs index bc92070b1..ca1082609 100644 --- a/src/Sonarr.Api.V3/ProviderControllerBase.cs +++ b/src/Sonarr.Api.V3/ProviderControllerBase.cs @@ -95,8 +95,8 @@ namespace Sonarr.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); }