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

38 lines
941 B

12 years ago
using System;
using System.Threading;
using NLog;
using NzbDrone.Common.EnvironmentInfo;
using NzbDrone.Common.Instrumentation;
using NzbDrone.Host;
12 years ago
namespace NzbDrone.Console
{
public static class ConsoleApp
12 years ago
{
private static readonly Logger Logger = NzbDroneLogger.GetLogger();
12 years ago
public static void Main(string[] args)
{
try
{
var startupArgs = new StartupArguments(args);
LogTargets.Register(startupArgs, false, true);
Bootstrap.Start(startupArgs, new ConsoleAlerts());
}
catch (TerminateApplicationException)
{
12 years ago
}
catch (Exception e)
12 years ago
{
Logger.FatalException("EPIC FAIL!", e);
System.Console.ReadLine();
12 years ago
}
while (true)
{
Thread.Sleep(10 * 60);
}
12 years ago
}
}
}