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

10 lines
180 B

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