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/23b90ae1c40ae02401b359863f8cec91d7b2d07f/NzbDrone.Web/Controllers/V2Controller.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/NzbDrone.Web/Controllers/V2Controller.cs

22 lines
323 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace NzbDrone.Web.Controllers
{
public class V2Controller : Controller
{
//
// GET: /V2/
public ActionResult Index()
{
return View();
}
}
}