From 77a47ff157c6c5feafe3f2a29a3fcba8df4fdfef Mon Sep 17 00:00:00 2001 From: tidusjar Date: Wed, 13 Apr 2022 20:44:23 +0100 Subject: [PATCH] fix(plex-watchlist): Only request the latest season when importing from the watchlist --- src/Ombi.Schedule/Jobs/Plex/PlexWatchlistImport.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ombi.Schedule/Jobs/Plex/PlexWatchlistImport.cs b/src/Ombi.Schedule/Jobs/Plex/PlexWatchlistImport.cs index 36a448130..8e6b443ef 100644 --- a/src/Ombi.Schedule/Jobs/Plex/PlexWatchlistImport.cs +++ b/src/Ombi.Schedule/Jobs/Plex/PlexWatchlistImport.cs @@ -140,7 +140,7 @@ namespace Ombi.Schedule.Jobs.Plex private async Task ProcessShow(int theMovieDbId, OmbiUser user) { _tvRequestEngine.SetUser(user); - var response = await _tvRequestEngine.RequestTvShow(new TvRequestViewModelV2 { RequestAll = true, TheMovieDbId = theMovieDbId, Source = RequestSource.PlexWatchlist }); + var response = await _tvRequestEngine.RequestTvShow(new TvRequestViewModelV2 { LatestSeason = true, TheMovieDbId = theMovieDbId, Source = RequestSource.PlexWatchlist }); if (response.IsError) { if (response.ErrorCode == ErrorCode.AlreadyRequested)