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/9ff60cba638c6579974d8db56862639da1e5daad/NzbDrone.Web/Controllers/SettingsController.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/NzbDrone.Web/Controllers/SettingsController.cs

21 lines
334 B

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