From a2acbddd6539fe35af4faa7a055fe753fa385fe3 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 (cherry picked from commit 65cb1ccafd54479fa3fca1f1eaa4b96222b0176b) --- src/Lidarr.Api.V1/ProviderControllerBase.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Lidarr.Api.V1/ProviderControllerBase.cs b/src/Lidarr.Api.V1/ProviderControllerBase.cs index d0c2ee25c..4c4a1a0c3 100644 --- a/src/Lidarr.Api.V1/ProviderControllerBase.cs +++ b/src/Lidarr.Api.V1/ProviderControllerBase.cs @@ -95,8 +95,8 @@ namespace Lidarr.Api.V1 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); }