From fd2399d589bd82bf9c856a163961f2e7687c3ffe Mon Sep 17 00:00:00 2001 From: Qstick Date: Tue, 10 Sep 2019 19:22:13 -0400 Subject: [PATCH] Fixed: Update Movie Libraries in Plex not Series Libraries --- .../Notifications/Plex/Server/PlexServerProxy.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Notifications/Plex/Server/PlexServerProxy.cs b/src/NzbDrone.Core/Notifications/Plex/Server/PlexServerProxy.cs index 8bf9cd59d9..21345ec94d 100644 --- a/src/NzbDrone.Core/Notifications/Plex/Server/PlexServerProxy.cs +++ b/src/NzbDrone.Core/Notifications/Plex/Server/PlexServerProxy.cs @@ -44,7 +44,7 @@ public List GetMovieSections(PlexServerSettings settings) { return Json.Deserialize(response) .Sections - .Where(d => d.Type == "show") + .Where(d => d.Type == "movie") .Select(s => new PlexSection { Id = s.Id, @@ -58,7 +58,7 @@ public List GetMovieSections(PlexServerSettings settings) return Json.Deserialize>(response) .MediaContainer .Sections - .Where(d => d.Type == "show") + .Where(d => d.Type == "movie") .ToList(); }