1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

New: Don't forcibly retest indexers/download clients/connections on save if previously enabled

(cherry picked from commit b2b1600ebe7f022a3248ea12b69553e2d51a3a7c)
This commit is contained in:
Mark McDowall 2020-09-09 01:09:45 -07:00 committed by Qstick
parent 7019c8587b
commit d31b1e1e9b

View File

@ -84,8 +84,10 @@ private int CreateProvider(TProviderResource providerResource)
private void UpdateProvider(TProviderResource providerResource)
{
var providerDefinition = GetDefinition(providerResource, false);
var existingDefinition = _providerFactory.Get(providerDefinition.Id);
if (providerDefinition.Enable)
// Only test existing definitions if it was previously disabled
if (providerDefinition.Enable && !existingDefinition.Enable)
{
Test(providerDefinition, false);
}