From 6e271e9272d6a109bc4b8f3debe784d767ee7a63 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Tue, 5 Apr 2022 17:08:58 -0700 Subject: [PATCH] Fixed: Error when trying to import an empty Plex Watchlist --- .../Notifications/Plex/Server/PlexSectionItem.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/NzbDrone.Core/Notifications/Plex/Server/PlexSectionItem.cs b/src/NzbDrone.Core/Notifications/Plex/Server/PlexSectionItem.cs index dac12e8c2..e1c0b4acb 100644 --- a/src/NzbDrone.Core/Notifications/Plex/Server/PlexSectionItem.cs +++ b/src/NzbDrone.Core/Notifications/Plex/Server/PlexSectionItem.cs @@ -30,6 +30,11 @@ namespace NzbDrone.Core.Notifications.Plex.Server { [JsonProperty("Metadata")] public List Items { get; set; } + + public PlexSectionResponse() + { + Items = new List(); + } } public class PlexSectionResponseLegacy