Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/0ecc62a6f78da4fc7583c88b0e47e93e1cb1fa9f?style=split&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
6 deletions
@ -1,8 +1,5 @@
using System ;
using System.Web.Mvc ;
using System.Web.Mvc ;
using NzbDrone.Common ;
using NzbDrone.Common ;
using NzbDrone.Core.Jobs ;
using NzbDrone.Core.Providers ;
using NzbDrone.Web.Models ;
using NzbDrone.Web.Models ;
namespace NzbDrone.Web.Controllers
namespace NzbDrone.Web.Controllers
@ -11,7 +8,7 @@ namespace NzbDrone.Web.Controllers
{
{
private readonly EnviromentProvider _enviromentProvider ;
private readonly EnviromentProvider _enviromentProvider ;
public SharedController ( JobProvider jobProvider , EnviromentProvider enviromentProvider )
public SharedController ( EnviromentProvider enviromentProvider )
{
{
_enviromentProvider = enviromentProvider ;
_enviromentProvider = enviromentProvider ;
}
}
@ -22,9 +19,9 @@ namespace NzbDrone.Web.Controllers
}
}
[ChildActionOnly]
[ChildActionOnly]
[OutputCache(Duration = 3600)]
public ActionResult Footer ( )
public ActionResult Footer ( )
{
{
return PartialView ( new FooterModel { BuildTime = _enviromentProvider . BuildDateTime , Version = _enviromentProvider . Version } ) ;
return PartialView ( new FooterModel { BuildTime = _enviromentProvider . BuildDateTime , Version = _enviromentProvider . Version } ) ;
}
}
}
}