Fix: Incorrect database check in sqlHourOffset (#3706)

This commit is contained in:
Nelson Chan 2023-09-07 14:00:49 +08:00 committed by GitHub
parent a8bc0f8d6a
commit f3e1a9c61a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -653,7 +653,7 @@ class Database {
* *
*/ */
static sqlHourOffset() { static sqlHourOffset() {
if (this.dbConfig.client === "sqlite3") { if (Database.dbConfig.type === "sqlite") {
return "DATETIME('now', ? || ' hours')"; return "DATETIME('now', ? || ' hours')";
} else { } else {
return "DATE_ADD(NOW(), INTERVAL ? HOUR)"; return "DATE_ADD(NOW(), INTERVAL ? HOUR)";