Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/blame/commit/62cea8de5eab178fa77e27668943dc4e42525b17/NzbDrone.Api/Frontend/IMapHttpRequestsToDisk.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/NzbDrone.Api/Frontend/IMapHttpRequestsToDisk.cs

10 lines
180 B


namespace NzbDrone.Api.Frontend
{
public interface IMapHttpRequestsToDisk
{
string Map(string resourceUrl);
bool CanHandle(string resourceUrl);
}
}