mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-01-10 23:29:53 +02:00
Fixed: Saving indexer, download client, etc settings
This commit is contained in:
parent
87ecbf39c1
commit
804a5921b3
@ -91,7 +91,9 @@ public ActionResult<TProviderResource> UpdateProvider([FromBody] TProviderResour
|
|||||||
var providerDefinition = GetDefinition(providerResource, existingDefinition, true, !forceSave, false);
|
var providerDefinition = GetDefinition(providerResource, existingDefinition, true, !forceSave, false);
|
||||||
|
|
||||||
// Comparing via JSON string to eliminate the need for every provider implementation to implement equality checks.
|
// Comparing via JSON string to eliminate the need for every provider implementation to implement equality checks.
|
||||||
var hasDefinitionChanged = STJson.ToJson(existingDefinition) != STJson.ToJson(providerDefinition);
|
// Compare settings separately because they are not serialized with the definition.
|
||||||
|
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.
|
// Only test existing definitions if it is enabled and forceSave isn't set or the definition has changed.
|
||||||
if (providerDefinition.Enable && (!forceSave || hasDefinitionChanged))
|
if (providerDefinition.Enable && (!forceSave || hasDefinitionChanged))
|
||||||
|
Loading…
Reference in New Issue
Block a user