Fixed: Error when trying to import an empty Plex Watchlist

pull/4976/head
Mark McDowall 3 years ago
parent 5c5b012ded
commit 6e271e9272

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

Loading…
Cancel
Save