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

29 lines
623 B

namespace Marr.Data.QGen.Dialects
{
public class SqliteDialect : Dialect
{
public override string IdentityQuery
{
get
{
return "SELECT last_insert_rowid();";
}
}
public override string StartsWithFormat
{
get { return "({0} LIKE {1} || '%')"; }
}
public override string EndsWithFormat
{
get { return "({0} LIKE '%' || {1})"; }
}
public override string ContainsFormat
{
get { return "({0} LIKE '%' || {1} || '%')"; }
}
}
}