1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-04 06:38:28 +02:00

Fixed: Error when trying to import an empty Plex Watchlist

This commit is contained in:
Mark McDowall 2022-04-05 17:08:58 -07:00
parent 5c5b012ded
commit 6e271e9272

View File

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