Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/bcb13f93ff2b58d3a319e0b5b4af228b63f3e38f
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
2 additions and
2 deletions
@ -22,7 +22,7 @@ namespace NzbDrone.Core.Test.UpdateTests
updates . Should ( ) . OnlyContain ( c = > ! string . IsNullOrWhiteSpace ( c . FileName ) ) ;
updates . Should ( ) . OnlyContain ( c = > ! string . IsNullOrWhiteSpace ( c . Url ) ) ;
updates . Should ( ) . OnlyContain ( c = > c . Version ! = null ) ;
updates . Should ( ) . OnlyContain ( c = > c . Version . M inor ! = 0 ) ;
updates . Should ( ) . OnlyContain ( c = > c . Version . M ajor = = 2 ) ;
}
}
}
@ -23,7 +23,7 @@ namespace NzbDrone.Core.Test.UpdateTests
private readonly UpdatePackage _updatePackage = new UpdatePackage
{
FileName = "NzbDrone.vnext.0.8.1.385.zip" ,
Url = "http://update.nzbdrone.com/v next/NzbDrone.vnext.0.8.1.385 .zip",
Url = "http://update.nzbdrone.com/v 10/master/NzbDrone.master.2.0.0.0 .zip",
Version = new Version ( "0.8.1.385" )
} ;