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(); }