Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/54dc8c323109a460b69cd77b116a01c1809ec9ca You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Error when trying to import an empty Plex Watchlist

(cherry picked from commit 6e271e9272d6a109bc4b8f3debe784d767ee7a63)
pull/2702/head
Mark McDowall 3 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