Fixed issue where we could get null rating keys on Plex

pull/1204/head
tidusjar 8 years ago
parent 5095d30a3c
commit 9637fe92f4

@ -264,7 +264,7 @@ namespace Ombi.Services.Jobs
return media;
});
if (item == null)
if (item == null && !string.IsNullOrEmpty(m.ItemId))
{
// Doesn't exist, insert it
PlexContent.Insert(new PlexContent
@ -305,7 +305,7 @@ namespace Ombi.Services.Jobs
return media;
});
if (item == null)
if (item == null && !string.IsNullOrEmpty(t.ItemId))
{
PlexContent.Insert(new PlexContent
{

Loading…
Cancel
Save