diff --git a/src/NzbDrone.Core/Applications/Lidarr/Lidarr.cs b/src/NzbDrone.Core/Applications/Lidarr/Lidarr.cs index 40dbec269..ce9349d6e 100644 --- a/src/NzbDrone.Core/Applications/Lidarr/Lidarr.cs +++ b/src/NzbDrone.Core/Applications/Lidarr/Lidarr.cs @@ -129,7 +129,7 @@ namespace NzbDrone.Core.Applications.Lidarr var lidarrIndexer = new LidarrIndexer { - Id = 0, + Id = id, Name = $"{indexer.Name} (Prowlarr)", EnableRss = indexer.Enable, EnableAutomaticSearch = indexer.Enable, diff --git a/src/NzbDrone.Core/Applications/Readarr/Readarr.cs b/src/NzbDrone.Core/Applications/Readarr/Readarr.cs index 0f3c4f915..9be37f7b5 100644 --- a/src/NzbDrone.Core/Applications/Readarr/Readarr.cs +++ b/src/NzbDrone.Core/Applications/Readarr/Readarr.cs @@ -129,7 +129,7 @@ namespace NzbDrone.Core.Applications.Readarr var readarrIndexer = new ReadarrIndexer { - Id = 0, + Id = id, Name = $"{indexer.Name} (Prowlarr)", EnableRss = indexer.Enable, EnableAutomaticSearch = indexer.Enable, diff --git a/src/NzbDrone.Core/Applications/Sonarr/Sonarr.cs b/src/NzbDrone.Core/Applications/Sonarr/Sonarr.cs index dcc6c9d53..8041c5956 100644 --- a/src/NzbDrone.Core/Applications/Sonarr/Sonarr.cs +++ b/src/NzbDrone.Core/Applications/Sonarr/Sonarr.cs @@ -129,7 +129,7 @@ namespace NzbDrone.Core.Applications.Sonarr var sonarrIndexer = new SonarrIndexer { - Id = 0, + Id = id, Name = $"{indexer.Name} (Prowlarr)", EnableRss = indexer.Enable, EnableAutomaticSearch = indexer.Enable,