Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/blame/commit/208feb7d19fa32b703573b96f3d535484f73142f/NzbDrone/Config.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
using System ;
using System.Configuration ;
using System.IO ;
using System.Reflection ;
using NLog ;
using NLog.Config ;
namespace NzbDrone
{
internal class Config
{
private static string _projectRoot = string . Empty ;
internal static string ProjectRoot
{
get
{
if ( string . IsNullOrEmpty ( _projectRoot ) )
{
var appDir = new FileInfo ( Assembly . GetExecutingAssembly ( ) . Location ) . Directory ;
while ( appDir . GetDirectories ( "iisexpress" ) . Length = = 0 )
{
if ( appDir . Parent = = null ) throw new ApplicationException ( "Can't fine IISExpress folder." ) ;
appDir = appDir . Parent ;
}
_projectRoot = appDir . FullName ;
}
return _projectRoot ;
}
}
internal static int Port
{
get { return Convert . ToInt32 ( ConfigurationManager . AppSettings . Get ( "port" ) ) ; }
}
internal static void ConfigureNlog ( )
{
LogManager . Configuration = new XmlLoggingConfiguration (
Path . Combine ( ProjectRoot , "NZBDrone.Web\\log.config" ) , false ) ;
}
}
}