Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/c2a1df61f683ed3f996c5c62b449fc94399f6f79
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
4 additions and
4 deletions
@ -77,7 +77,7 @@ namespace NzbDrone.Common
return Path . Combine ( environmentProvider . ApplicationPath , APP_CONFIG_FILE ) ;
}
public static string GetNzbDron o eDbFile( this EnvironmentProvider environmentProvider )
public static string GetNzbDron eDbFile( this EnvironmentProvider environmentProvider )
{
return Path . Combine ( environmentProvider . GetAppDataPath ( ) , NZBDRONE_DB_FILE ) ;
}
@ -32,7 +32,7 @@ namespace NzbDrone.Core.Datastore
{
get
{
return GetConnectionString ( _environmentProvider . GetNzbDron o eDbFile( ) ) ;
return GetConnectionString ( _environmentProvider . GetNzbDron eDbFile( ) ) ;
}
}
@ -46,7 +46,7 @@ namespace NzbDrone.Core.Datastore
public static string GetConnectionString ( string path )
{
return String . Format ( "Data Source= {0}", path ) ;
return String . Format ( "Data Source= \" {0}\"; Max Database Size = 512; ", path ) ;
}
public IDatabase GetMainPetaPocoDb ( Boolean profiled = true )
@ -25,7 +25,7 @@ namespace NzbDrone.Core.Providers
public virtual string CreateBackupZip ( )
{
var dbFile = _environmentProvider . GetNzbDron o eDbFile( ) ;
var dbFile = _environmentProvider . GetNzbDron eDbFile( ) ;
var configFile = _environmentProvider . GetConfigPath ( ) ;
var zipFile = _environmentProvider . GetConfigBackupFile ( ) ;