From d962a3211eca29520662ddce962676e3aea17ec5 Mon Sep 17 00:00:00 2001 From: tidusjar Date: Fri, 8 Apr 2022 14:54:24 +0100 Subject: [PATCH] fix(watchlist): actually fixed it this time... --- src/Ombi.Schedule/Jobs/Plex/PlexWatchlistImport.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Ombi.Schedule/Jobs/Plex/PlexWatchlistImport.cs b/src/Ombi.Schedule/Jobs/Plex/PlexWatchlistImport.cs index d1217c8b5..ac5d21b16 100644 --- a/src/Ombi.Schedule/Jobs/Plex/PlexWatchlistImport.cs +++ b/src/Ombi.Schedule/Jobs/Plex/PlexWatchlistImport.cs @@ -67,7 +67,7 @@ namespace Ombi.Schedule.Jobs.Plex if (watchlist == null || !(watchlist.MediaContainer?.Metadata?.Any() ?? false)) { _logger.LogDebug($"No watchlist found for {user.UserName}"); - return; + continue; } var items = watchlist.MediaContainer.Metadata; @@ -80,7 +80,7 @@ namespace Ombi.Schedule.Jobs.Plex { _logger.LogWarning($"No TheMovieDb Id found for {item.title}, could not import via Plex WatchList"); // We need a MovieDbId to support this; - return; + continue; } switch (item.type) {