Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/dfb02884a054f797024aa59b5cede6ac7a52112a
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
2 additions and
16 deletions
@ -20,7 +20,7 @@ namespace NzbDrone.Core.Test.Datastore
[SetUp]
public void SetUp ( )
{
WithObjectDb ( ) ;
WithObjectDb ( false ) ;
testSeries = Builder < Series >
. CreateNew ( )
@ -22,13 +22,7 @@ namespace NzbDrone.Core.Datastore
public EloqueraDb CreateMemoryDb ( )
{
if ( EnvironmentProvider . IsMono )
{
return InternalCreate ( "server=(local);password=;options=inmemory" , Guid . NewGuid ( ) . ToString ( ) ) ;
}
return InternalCreate ( "server=(local);password=;options=inmemory;uselocalpath=" + dllPath , Guid . NewGuid ( ) . ToString ( ) ) ;
}
public EloqueraDb Create ( string dbPath = null )
@ -40,15 +34,7 @@ namespace NzbDrone.Core.Datastore
var file = new FileInfo ( dbPath ) ;
if ( EnvironmentProvider . IsMono )
{
return InternalCreate ( string . Format ( "server=(local);password=;usedatapath={0}" , file . Directory . FullName ) , file . Name ) ;
}
else
{
return InternalCreate ( string . Format ( "server=(local);password=;usedatapath={0};uselocalpath={1}" , file . Directory . FullName , dllPath ) , file . Name ) ;
}
return InternalCreate ( string . Format ( "server=(local);password=;usedatapath={0};uselocalpath={1}" , file . Directory . FullName , dllPath ) , file . Name ) ;
}
private EloqueraDb InternalCreate ( string connectionString , string databaseName )