Fixed: Enforce validation warnings when testing providers

This commit is contained in:
Bogdan 2023-11-12 18:01:39 +02:00 committed by Mark McDowall
parent f205cfabab
commit c3b4126d0c
1 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ namespace Sonarr.Api.V3
if (providerDefinition.Enable) if (providerDefinition.Enable)
{ {
Test(providerDefinition, false); Test(providerDefinition, !forceSave);
} }
providerDefinition = _providerFactory.Create(providerDefinition); providerDefinition = _providerFactory.Create(providerDefinition);
@ -92,7 +92,7 @@ namespace Sonarr.Api.V3
// Only test existing definitions if it is enabled and forceSave isn't set. // Only test existing definitions if it is enabled and forceSave isn't set.
if (providerDefinition.Enable && !forceSave) if (providerDefinition.Enable && !forceSave)
{ {
Test(providerDefinition, false); Test(providerDefinition, true);
} }
_providerFactory.Update(providerDefinition); _providerFactory.Update(providerDefinition);