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/6675a841d7f1205547d8aaac055c35524f78b1f8/NzbDrone.Api/NzbDroneApiModule.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
using System.Linq;
|
|
using Nancy;
|
|
using Nancy.Responses;
|
|
|
|
namespace NzbDrone.Api
|
|
{
|
|
public abstract class NzbDroneApiModule : NancyModule
|
|
{
|
|
protected NzbDroneApiModule(string resource)
|
|
: base("/api/" + resource.Trim('/'))
|
|
{
|
|
Options["/"] = x => new Response();
|
|
}
|
|
|
|
|
|
|
|
}
|
|
} |