mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 21:03:17 -07:00
fix(plex-watchlist): Only request the latest season when importing from the watchlist
This commit is contained in:
parent
ea0529dbf5
commit
77a47ff157
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue