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 &&