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

Fixed: Error message when adding a Plex server without a TV library

pull/1963/head
Mark McDowall 8 years ago
parent 6dcb7768a9
commit 416e9abca5
No known key found for this signature in database
GPG Key ID: D4CEFA9A718052E0

@ -11,6 +11,11 @@ namespace NzbDrone.Core.Notifications.Plex.Models
public class PlexSection
{
public PlexSection()
{
Locations = new List<PlexSectionLocation>();
}
[JsonProperty("key")]
public int Id { get; set; }
@ -23,6 +28,11 @@ namespace NzbDrone.Core.Notifications.Plex.Models
public class PlexSectionsContainer
{
public PlexSectionsContainer()
{
Sections = new List<PlexSection>();
}
[JsonProperty("Directory")]
public List<PlexSection> Sections { get; set; }
}

Loading…
Cancel
Save