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

14 lines
266 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NzbDrone.Api.Frontend
{
public interface IMapHttpRequestsToDisk
{
string Map(string resourceUrl);
bool CanHandle(string resourceUrl);
}
}