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

24 lines
469 B

using System;
namespace NzbDrone.Console
{
public static class AppMain
{
public static void Main(string[] args)
{
try
{
NzbDrone.AppMain.Main(args);
}
catch(Exception e)
{
System.Console.WriteLine(e.ToString());
}
System.Console.WriteLine("Press enter to exit...");
System.Console.ReadLine();
}
}
}