mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 13:23:20 -07:00
fix(watchlist): actually fixed it this time...
This commit is contained in:
parent
63fe3c97e9
commit
d962a3211e
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue