Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/799061acfe11156aa3de86866431abd2e09247d9
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
7 additions and
3 deletions
@ -24,7 +24,7 @@ namespace Ombi.Store.Context.Sqlite
{
try
{
Database . ExecuteSql Command( @ "INSERT INTO __EFMigrationsHistory (MigrationId,ProductVersion)
Database . ExecuteSql Raw( @ "INSERT OR IGNORE INTO __EFMigrationsHistory (MigrationId,ProductVersion)
VALUES ( ' 20191103205133_ Inital ' , ' 2.2 . 6 - servicing - 10079 ' ) ; ");
}
catch ( Exception )
@ -22,7 +22,7 @@ namespace Ombi.Store.Context.Sqlite
{
try
{
Database . ExecuteSql Command( @ "INSERT INTO __EFMigrationsHistory (MigrationId,ProductVersion)
Database . ExecuteSql Raw( @ "INSERT OR IGNORE INTO __EFMigrationsHistory (MigrationId,ProductVersion)
VALUES ( ' 20191102235658_ Inital ' , ' 2.2 . 6 - servicing - 10079 ' ) ; ");
}
catch ( Exception )
@ -20,7 +20,7 @@ namespace Ombi.Store.Context.Sqlite
{
try
{
Database . ExecuteSql Command( @ "INSERT INTO __EFMigrationsHistory (MigrationId,ProductVersion)
Database . ExecuteSql Raw( @ "INSERT OR IGNORE INTO __EFMigrationsHistory (MigrationId,ProductVersion)
VALUES ( ' 20191103205204_ Inital ' , ' 2.2 . 6 - servicing - 10079 ' ) ; ");
}
catch ( Exception )
@ -96,6 +96,10 @@ namespace Ombi
urlValue = url . Value ;
}
else if ( string . IsNullOrEmpty ( urlValue ) )
{
urlValue = host ;
}
if ( dbBaseUrl = = null )
{