Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/blame/commit/de6304e628e2c957f57e59d3c15ab9c4935d829e/NzbDrone.Update/AppType.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/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
}
}