fix(watchlist): actually fixed it this time...

pull/4590/head
tidusjar 3 years ago
parent 63fe3c97e9
commit d962a3211e

@ -67,7 +67,7 @@ namespace Ombi.Schedule.Jobs.Plex
if (watchlist == null || !(watchlist.MediaContainer?.Metadata?.Any() ?? false)) if (watchlist == null || !(watchlist.MediaContainer?.Metadata?.Any() ?? false))
{ {
_logger.LogDebug($"No watchlist found for {user.UserName}"); _logger.LogDebug($"No watchlist found for {user.UserName}");
return; continue;
} }
var items = watchlist.MediaContainer.Metadata; 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"); _logger.LogWarning($"No TheMovieDb Id found for {item.title}, could not import via Plex WatchList");
// We need a MovieDbId to support this; // We need a MovieDbId to support this;
return; continue;
} }
switch (item.type) switch (item.type)
{ {

Loading…
Cancel
Save