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/3a5d99921eff949b457e56015d716a99966794dc/ServiceHelpers/ServiceInstall/Program.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/ServiceHelpers/ServiceInstall/Program.cs

17 lines
309 B

using System.Linq;
using System;
using InstallService;
namespace ServiceInstall
{
public static class Program
{
static void Main()
{
ServiceHelper.Run(@"/i");
Console.WriteLine("Press any key to continue");
Console.ReadLine();
}
}
}