diff --git a/src/Provider.Radarr/src/RadarrClient.cs b/src/Provider.Radarr/src/RadarrClient.cs index 00d52bc..c9121d3 100644 --- a/src/Provider.Radarr/src/RadarrClient.cs +++ b/src/Provider.Radarr/src/RadarrClient.cs @@ -179,7 +179,7 @@ await this._client }; // If the movie already exists, just update it. - if(movie.Id is not null) + if(movie.Id is not null && configuration.UpdateExisting) { IFlurlResponse newMovieResponse = await this._client .Request($"/api/v3/movie/{movie.Id}") diff --git a/src/Provider.Sonarr/src/SonarrClient.cs b/src/Provider.Sonarr/src/SonarrClient.cs index 0ea2d43..a4e058b 100644 --- a/src/Provider.Sonarr/src/SonarrClient.cs +++ b/src/Provider.Sonarr/src/SonarrClient.cs @@ -140,7 +140,7 @@ await this._client }; // If the series already exists, just update it. - if(series.Id is not null) + if(series.Id is not null && configuration.UpdateExisting) { IFlurlResponse newSeriesResponse = await this._client .Request($"/api/v3/series/{series.Id}")