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

19 lines
344 B

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