diff --git a/src/NzbDrone.Core/Notifications/Plex/Server/PlexSectionItem.cs b/src/NzbDrone.Core/Notifications/Plex/Server/PlexSectionItem.cs index 2bef3dce6..ddaeaf884 100644 --- a/src/NzbDrone.Core/Notifications/Plex/Server/PlexSectionItem.cs +++ b/src/NzbDrone.Core/Notifications/Plex/Server/PlexSectionItem.cs @@ -6,9 +6,10 @@ namespace NzbDrone.Core.Notifications.Plex.Server public class PlexSectionItem { [JsonProperty("ratingKey")] - public int Id { get; set; } + public string Id { get; set; } public string Title { get; set; } + public string Guid { get; set; } } public class PlexSectionResponse @@ -26,5 +27,10 @@ namespace NzbDrone.Core.Notifications.Plex.Server { [JsonProperty("_children")] public List Items { get; set; } + + public PlexSectionResponseLegacy() + { + Items = new List(); + } } }