diff --git a/src/NzbDrone.Core/Notifications/Plex/Server/PlexServerProxy.cs b/src/NzbDrone.Core/Notifications/Plex/Server/PlexServerProxy.cs index 8bf9cd59d..21345ec94 100644 --- a/src/NzbDrone.Core/Notifications/Plex/Server/PlexServerProxy.cs +++ b/src/NzbDrone.Core/Notifications/Plex/Server/PlexServerProxy.cs @@ -44,7 +44,7 @@ namespace NzbDrone.Core.Notifications.Plex.Server { 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 @@ namespace NzbDrone.Core.Notifications.Plex.Server return Json.Deserialize>(response) .MediaContainer .Sections - .Where(d => d.Type == "show") + .Where(d => d.Type == "movie") .ToList(); }