fix(sonarr): monitor existing series upon request approval (#2553)

pull/2597/head
TheCatLady 3 years ago committed by GitHub
parent 54b32ebfd6
commit aa062d921c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -149,6 +149,7 @@ class SonarrAPI extends ServarrBase<{ seriesId: number; episodeId: number }> {
// If the series already exists, we will simply just update it
if (series.id) {
series.monitored = options.monitored ?? series.monitored;
series.tags = options.tags ?? series.tags;
series.seasons = this.buildSeasonList(options.seasons, series.seasons);

Loading…
Cancel
Save