From 9637fe92f402abba099fed0c6dbf6bfad0cae933 Mon Sep 17 00:00:00 2001 From: tidusjar Date: Sat, 4 Mar 2017 14:01:39 +0000 Subject: [PATCH] Fixed issue where we could get null rating keys on Plex --- Ombi.Services/Jobs/PlexContentCacher.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ombi.Services/Jobs/PlexContentCacher.cs b/Ombi.Services/Jobs/PlexContentCacher.cs index 041374c6b..f370b7b36 100644 --- a/Ombi.Services/Jobs/PlexContentCacher.cs +++ b/Ombi.Services/Jobs/PlexContentCacher.cs @@ -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 {