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/8bdf8c31f0ed0d1b2c461cf22fcf2801daa1506c/NzbDrone/Owin/MiddleWare/IOwinMiddleWare.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/NzbDrone/Owin/MiddleWare/IOwinMiddleWare.cs

10 lines
175 B

using Owin;
namespace NzbDrone.Owin.MiddleWare
{
public interface IOwinMiddleWare
{
int Order { get; }
void Attach(IAppBuilder appBuilder);
}
}