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

16 lines
242 B

using System.Linq;
namespace NzbDrone.Core
{
public static class Constants
{
public static long IgnoreFileSize
{
get
{
return 40.Megabytes();
}
}
}
}