Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/c5d2ba9bef470446a270575d1ec85fe61090fc32
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
3 additions and
12 deletions
@ -29,15 +29,8 @@ namespace NzbDrone.Services.Service.App_Start
private static IKernel CreateKernel ( )
{
var kernel = new StandardKernel ( ) ;
InitDb( kernel ) ;
kernel. Bind < IDatabase > ( ) . ToMethod ( c = > Connection . GetPetaPocoDb ( ) ) ;
return kernel ;
}
private static void InitDb ( IKernel kernel )
{
var db = Connection . GetPetaPocoDb ( ) ;
kernel . Bind < IDatabase > ( ) . ToConstant ( db ) ;
}
}
}
@ -1,6 +1,4 @@
using System ;
using System.Configuration ;
using System.Data.SqlClient ;
using System.Configuration ;
using System.Linq ;
using NzbDrone.Services.Service.Migrations ;
using Services.PetaPoco ;
@ -22,7 +20,7 @@ namespace NzbDrone.Services.Service.Datastore
var db = new Database ( "SqlExpress" )
{
KeepConnectionAlive = tru e,
KeepConnectionAlive = fals e,
ForceDateTimesToUtc = false ,
} ;