From 6612202384a528f16bb5ab8414685e4e00854446 Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Fri, 11 Jun 2021 14:42:00 -0500 Subject: [PATCH] Fixed: App not syncing correct if only Interactive Search enabled (#197) Fixes #196 --- src/NzbDrone.Core/Applications/Lidarr/LidarrIndexer.cs | 2 +- src/NzbDrone.Core/Applications/Radarr/RadarrIndexer.cs | 2 +- src/NzbDrone.Core/Applications/Readarr/ReadarrIndexer.cs | 2 +- src/NzbDrone.Core/Applications/Sonarr/SonarrIndexer.cs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/NzbDrone.Core/Applications/Lidarr/LidarrIndexer.cs b/src/NzbDrone.Core/Applications/Lidarr/LidarrIndexer.cs index 8b63f7b0b..ccd3c0db3 100644 --- a/src/NzbDrone.Core/Applications/Lidarr/LidarrIndexer.cs +++ b/src/NzbDrone.Core/Applications/Lidarr/LidarrIndexer.cs @@ -33,7 +33,7 @@ namespace NzbDrone.Core.Applications.Lidarr return other.EnableRss == EnableRss && other.EnableAutomaticSearch == EnableAutomaticSearch && - other.EnableInteractiveSearch == EnableAutomaticSearch && + other.EnableInteractiveSearch == EnableInteractiveSearch && other.Name == Name && other.Implementation == Implementation && other.Priority == Priority && diff --git a/src/NzbDrone.Core/Applications/Radarr/RadarrIndexer.cs b/src/NzbDrone.Core/Applications/Radarr/RadarrIndexer.cs index e3cedcb9d..025b06044 100644 --- a/src/NzbDrone.Core/Applications/Radarr/RadarrIndexer.cs +++ b/src/NzbDrone.Core/Applications/Radarr/RadarrIndexer.cs @@ -33,7 +33,7 @@ namespace NzbDrone.Core.Applications.Radarr return other.EnableRss == EnableRss && other.EnableAutomaticSearch == EnableAutomaticSearch && - other.EnableInteractiveSearch == EnableAutomaticSearch && + other.EnableInteractiveSearch == EnableInteractiveSearch && other.Name == Name && other.Implementation == Implementation && other.Priority == Priority && diff --git a/src/NzbDrone.Core/Applications/Readarr/ReadarrIndexer.cs b/src/NzbDrone.Core/Applications/Readarr/ReadarrIndexer.cs index 165184db2..641a53e80 100644 --- a/src/NzbDrone.Core/Applications/Readarr/ReadarrIndexer.cs +++ b/src/NzbDrone.Core/Applications/Readarr/ReadarrIndexer.cs @@ -33,7 +33,7 @@ namespace NzbDrone.Core.Applications.Readarr return other.EnableRss == EnableRss && other.EnableAutomaticSearch == EnableAutomaticSearch && - other.EnableInteractiveSearch == EnableAutomaticSearch && + other.EnableInteractiveSearch == EnableInteractiveSearch && other.Name == Name && other.Implementation == Implementation && other.Priority == Priority && diff --git a/src/NzbDrone.Core/Applications/Sonarr/SonarrIndexer.cs b/src/NzbDrone.Core/Applications/Sonarr/SonarrIndexer.cs index 28c1f8358..fe0bfebf3 100644 --- a/src/NzbDrone.Core/Applications/Sonarr/SonarrIndexer.cs +++ b/src/NzbDrone.Core/Applications/Sonarr/SonarrIndexer.cs @@ -34,7 +34,7 @@ namespace NzbDrone.Core.Applications.Sonarr return other.EnableRss == EnableRss && other.EnableAutomaticSearch == EnableAutomaticSearch && - other.EnableInteractiveSearch == EnableAutomaticSearch && + other.EnableInteractiveSearch == EnableInteractiveSearch && other.Name == Name && other.Implementation == Implementation && other.Priority == Priority &&