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

Fixed: Ensure an API Key is set when starting Radarr ()

pull/1637/merge
Mitchell Cash 8 years ago committed by Leonardo Galli
parent 43446ee3d0
commit 7af88037bb

@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
@ -141,7 +141,21 @@ namespace NzbDrone.Core.Configuration
public bool LaunchBrowser => GetValueBoolean("LaunchBrowser", true);
public string ApiKey => GetValue("ApiKey", GenerateApiKey());
public string ApiKey
{
get
{
var apiKey = GetValue("ApiKey", GenerateApiKey());
if (apiKey.IsNullOrWhiteSpace())
{
apiKey = GenerateApiKey();
SetValue("ApiKey", apiKey);
}
return apiKey;
}
}
public AuthenticationType AuthenticationMethod
{

Loading…
Cancel
Save