mirror of
https://github.com/Lidarr/Lidarr
synced 2026-04-20 19:51:31 +02:00
Fixed: Error when trying to import an empty Plex Watchlist
(cherry picked from commit 6e271e9272d6a109bc4b8f3debe784d767ee7a63)
This commit is contained in:
parent
4dd0b49dbc
commit
54dc8c3231
1 changed files with 5 additions and 0 deletions
|
|
@ -15,6 +15,11 @@ public class PlexSectionResponse
|
|||
{
|
||||
[JsonProperty("Metadata")]
|
||||
public List<PlexSectionItem> Items { get; set; }
|
||||
|
||||
public PlexSectionResponse()
|
||||
{
|
||||
Items = new List<PlexSectionItem>();
|
||||
}
|
||||
}
|
||||
|
||||
public class PlexSectionResponseLegacy
|
||||
|
|
|
|||
Loading…
Reference in a new issue