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

15 lines
205 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NzbDrone.Update
{
public enum AppType
{
Normal,
Console,
Service
}
}