Fixed: Error when trying to import an empty Plex Watchlist

(cherry picked from commit 6e271e9272d6a109bc4b8f3debe784d767ee7a63)
pull/2702/head
Mark McDowall 2 years ago committed by Qstick
parent 4dd0b49dbc
commit 54dc8c3231

@ -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

Loading…
Cancel
Save