From 6a2e3c9c8482d2d0484f39dc4d996295870ca04d Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Mon, 11 Apr 2022 19:34:02 -0700 Subject: [PATCH] Fixed Plex Library Updates (cherry picked from commit bd70fa54107c225ea08da53183e2be944e730475) Closes #2757 --- .../Notifications/Plex/Server/PlexSectionItem.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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(); + } } }