diff --git a/src/NzbDrone.Core/Notifications/Plex/PlexServerProxy.cs b/src/NzbDrone.Core/Notifications/Plex/PlexServerProxy.cs index 10b500b71..0742ca049 100644 --- a/src/NzbDrone.Core/Notifications/Plex/PlexServerProxy.cs +++ b/src/NzbDrone.Core/Notifications/Plex/PlexServerProxy.cs @@ -48,7 +48,7 @@ namespace NzbDrone.Core.Notifications.Plex { return Json.Deserialize(response.Content) .Sections - .Where(d => d.Type == "show") + .Where(d => d.Type == "movie") .Select(s => new PlexSection { Id = s.Id, @@ -62,7 +62,7 @@ namespace NzbDrone.Core.Notifications.Plex return Json.Deserialize>(response.Content) .MediaContainer .Sections - .Where(d => d.Type == "show") + .Where(d => d.Type == "movie") .ToList(); }