mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2026-02-18 16:42:57 +00:00
Fix #5284 for older sqlite3 configurations
All checks were successful
Close stale issues and PRs / stale (push) Successful in 33s
All checks were successful
Close stale issues and PRs / stale (push) Successful in 33s
This commit is contained in:
@@ -7,6 +7,9 @@ const mysqlEngine = 'mysql2';
|
|||||||
const postgresEngine = 'pg';
|
const postgresEngine = 'pg';
|
||||||
const sqliteClientName = 'better-sqlite3';
|
const sqliteClientName = 'better-sqlite3';
|
||||||
|
|
||||||
|
// Not used for new setups anymore but may exist in legacy setups
|
||||||
|
const legacySqliteClientName = 'sqlite3';
|
||||||
|
|
||||||
let instance = null;
|
let instance = null;
|
||||||
|
|
||||||
// 1. Load from config file first (not recommended anymore)
|
// 1. Load from config file first (not recommended anymore)
|
||||||
@@ -184,7 +187,7 @@ const configGet = (key) => {
|
|||||||
*/
|
*/
|
||||||
const isSqlite = () => {
|
const isSqlite = () => {
|
||||||
instance === null && configure();
|
instance === null && configure();
|
||||||
return instance.database.knex && instance.database.knex.client === sqliteClientName;
|
return instance.database.knex && [sqliteClientName, legacySqliteClientName].includes(instance.database.knex.client);
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user