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/b9fac94eca3978a40fa14e9713470935efe1207f/NzbDrone.Api/Extensions/RootPathProvider.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/NzbDrone.Api/Extensions/RootPathProvider.cs

14 lines
264 B

using System.IO;
using System.Linq;
using Nancy;
namespace NzbDrone.Api.Extensions
{
public class RootPathProvider : IRootPathProvider
{
public string GetRootPath()
{
return Directory.GetCurrentDirectory();
}
}
}