From 129c218c9ede618fb8188b84f21ed1ec8f949afa Mon Sep 17 00:00:00 2001 From: Jamie Date: Sun, 18 Sep 2016 21:53:38 +0100 Subject: [PATCH] Update CouchPotatoCacher.cs --- PlexRequests.Services/Jobs/CouchPotatoCacher.cs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/PlexRequests.Services/Jobs/CouchPotatoCacher.cs b/PlexRequests.Services/Jobs/CouchPotatoCacher.cs index be36d004f..5ad3d99d8 100644 --- a/PlexRequests.Services/Jobs/CouchPotatoCacher.cs +++ b/PlexRequests.Services/Jobs/CouchPotatoCacher.cs @@ -92,8 +92,12 @@ namespace PlexRequests.Services.Jobs { var movies = Cache.Get(CacheKeys.CouchPotatoQueued); - var items = movies?.movies?.Select(x => x.info?.tmdb_id).Cast().ToArray(); - return items ?? new int[] { }; + var items = movies?.movies?.Select(x => x.info?.tmdb_id); + if(items != null) + { + return items.Cast().ToArray(); + } + return new int[] { }; } catch (Exception e) { @@ -107,4 +111,4 @@ namespace PlexRequests.Services.Jobs Queued(); } } -} \ No newline at end of file +}