Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/d4706dd8f5fa3a1ec08b02b7d9973a42a29d1392
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
16 additions and
3 deletions
@ -3,6 +3,7 @@ using Nancy.Routing;
using NzbDrone.Common ;
using NzbDrone.Api.Extensions ;
using NzbDrone.Common.EnvironmentInfo ;
using NzbDrone.Core.Configuration ;
namespace NzbDrone.Api.System
{
@ -11,13 +12,15 @@ namespace NzbDrone.Api.System
private readonly IAppFolderInfo _appFolderInfo ;
private readonly IRuntimeInfo _runtimeInfo ;
private readonly IRouteCacheProvider _routeCacheProvider ;
private readonly IConfigFileProvider _configFileProvider ;
public SystemModule ( IAppFolderInfo appFolderInfo , IRuntimeInfo runtimeInfo , IRouteCacheProvider routeCacheProvider )
public SystemModule ( IAppFolderInfo appFolderInfo , IRuntimeInfo runtimeInfo , IRouteCacheProvider routeCacheProvider , IConfigFileProvider configFileProvider )
: base ( "system" )
{
_appFolderInfo = appFolderInfo ;
_runtimeInfo = runtimeInfo ;
_routeCacheProvider = routeCacheProvider ;
_configFileProvider = configFileProvider ;
Get [ "/status" ] = x = > GetStatus ( ) ;
Get [ "/routes" ] = x = > GetRoutes ( ) ;
}
@ -37,6 +40,8 @@ namespace NzbDrone.Api.System
OsVersion = OsInfo . Version . ToString ( ) ,
IsMono = OsInfo . IsMono ,
IsLinux = OsInfo . IsLinux ,
Branch = _configFileProvider . Branch ,
Authentication = _configFileProvider . AuthenticationEnabled
} . AsResponse ( ) ;
}
@ -1,4 +1,4 @@
'use strict' ;
'use strict' ;
define (
[
'marionette'
@ -8,4 +8,12 @@ var statusText = $.ajax({
window . ServerStatus = JSON . parse ( statusText ) ;
$ ( '#footer-region .version' ) . html ( window . ServerStatus . version ) ;
var footerText = window . ServerStatus . version ;
$ ( document ) . ready ( function ( ) {
if ( window . ServerStatus . branch != 'master' ) {
footerText = '</br>' + window . ServerStatus . branch ;
}
$ ( '#footer-region .version' ) . html ( footerText ) ;
} ) ;