Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/src/commit/0f4bfd7afc4476d6855141b77bc9ed6f6352f34e/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} || '%')"; }
}
}
}