Fixed: Error when trying to import an empty Plex Watchlist

(cherry picked from commit 6e271e9272d6a109bc4b8f3debe784d767ee7a63)
This commit is contained in:
Mark McDowall 2022-04-05 17:08:58 -07:00 committed by Qstick
parent 4dd0b49dbc
commit 54dc8c3231
1 changed files with 5 additions and 0 deletions

View File

@ -15,6 +15,11 @@ namespace NzbDrone.Core.Notifications.Plex.Server
{
[JsonProperty("Metadata")]
public List<PlexSectionItem> Items { get; set; }
public PlexSectionResponse()
{
Items = new List<PlexSectionItem>();
}
}
public class PlexSectionResponseLegacy