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

Plex server testing will use username and password if configured

pull/3113/head
Mark McDowall 11 years ago
parent 2cc0dc3aab
commit e58faf8621

@ -108,7 +108,13 @@ namespace NzbDrone.Core.Notifications.Plex
public void Execute(TestPlexServerCommand message)
{
if (!GetSectionKeys(new PlexServerSettings {Host = message.Host, Port = message.Port}).Any())
if (!GetSectionKeys(new PlexServerSettings
{
Host = message.Host,
Port = message.Port,
Username = message.Username,
Password = message.Password
}).Any())
{
throw new Exception("Unable to connect to Plex Server");
}

@ -14,5 +14,7 @@ namespace NzbDrone.Core.Notifications.Plex
public string Host { get; set; }
public int Port { get; set; }
public string Username { get; set; }
public string Password { get; set; }
}
}

Loading…
Cancel
Save