Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/blame/commit/e152ecc55d4b8509bbdd60a3ca7939c3750e334b/Marr.Data/QGen/Dialects/SqlServerDialect.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/Marr.Data/QGen/Dialects/SqlServerDialect.cs

14 lines
257 B

namespace Marr.Data.QGen.Dialects
{
public class SqlServerDialect : Dialect
{
public override string IdentityQuery
{
get
{
return "SELECT SCOPE_IDENTITY();";
}
}
}
}