Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/6e792c6916843bedf11c6f5a375f0f8ca2339d07
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
6 additions and
9 deletions
@ -5,7 +5,6 @@ using System.Linq;
using System.Threading ;
using System.Xml.Linq ;
using NUnit.Framework ;
using NzbDrone.Common ;
using NzbDrone.Common.EnvironmentInfo ;
using NzbDrone.Common.Processes ;
using NzbDrone.Core.Configuration ;
@ -41,8 +40,7 @@ namespace NzbDrone.Integration.Test
if ( BuildInfo . IsDebug )
{
Start ( "..\\..\\..\\..\\_output\\NzbDrone.Console.exe" ) ;
Start ( "..\\..\\..\\..\\..\\_output\\NzbDrone.Console.exe" ) ;
}
else
{
@ -58,7 +56,7 @@ namespace NzbDrone.Integration.Test
Assert . Fail ( "Process has exited" ) ;
}
S etApiKey( ) ;
ApiKey = G etApiKey( ) ;
var request = new RestRequest ( "system/status" ) ;
request . AddHeader ( "Authorization" , ApiKey ) ;
@ -100,16 +98,16 @@ namespace NzbDrone.Integration.Test
}
}
private void S etApiKey( )
private string G etApiKey( )
{
var configFile = Path . Combine ( AppData , "config.xml" ) ;
if ( ! String . IsNullOrWhiteSpace ( ApiKey ) ) return ;
if ( ! File . Exists ( configFile ) ) return ;
if ( ! String . IsNullOrWhiteSpace ( ApiKey ) ) return ApiKey ;
if ( ! File . Exists ( configFile ) ) return null ;
var xDoc = XDocument . Load ( configFile ) ;
var config = xDoc . Descendants ( ConfigFileProvider . CONFIG_ELEMENT_NAME ) . Single ( ) ;
ApiKey = config . Descendants ( "ApiKey" ) . Single ( ) . Value ;
return config . Descendants ( "ApiKey" ) . Single ( ) . Value ;
}
}
}
@ -2,7 +2,6 @@
define (
[
'marionette' ,
'Navbar/Search' ,
'jquery'
] , function ( Marionette , $ ) {
return Marionette . ItemView . extend ( {