Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/45dbcc6b89ced7788f0f3ae2c43fc35073a168ca
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
2 additions and
3 deletions
@ -9,7 +9,7 @@ variables:
testsFolder : './_tests'
yarnCacheFolder : $(Pipeline.Workspace)/.yarn
nugetCacheFolder : $(Pipeline.Workspace)/.nuget/packages
majorVersion : ' 0.4.11 '
majorVersion : ' 1.0.0 '
minorVersion : $[counter('minorVersion', 1)]
prowlarrVersion : '$(majorVersion).$(minorVersion)'
buildName : '$(Build.SourceBranchName).$(prowlarrVersion)'
@ -25,7 +25,6 @@ namespace NzbDrone.Core.Test.UpdateTests
}
[Test]
[Ignore("TODO No Updates On Server")]
public void finds_update_when_version_lower ( )
{
UseRealHttp ( ) ;
@ -196,7 +196,7 @@ namespace NzbDrone.Core.Configuration
public bool AnalyticsEnabled = > GetValueBoolean ( "AnalyticsEnabled" , true , persist : false ) ;
// TODO: Change back to "master" for the first stable release.
public string Branch = > GetValue ( "Branch" , " develop ") . ToLowerInvariant ( ) ;
public string Branch = > GetValue ( "Branch" , " master ") . ToLowerInvariant ( ) ;
public string LogLevel = > GetValue ( "LogLevel" , "info" ) . ToLowerInvariant ( ) ;
public string ConsoleLogLevel = > GetValue ( "ConsoleLogLevel" , string . Empty , persist : false ) ;