From 6e211c8366c212ccad762488f0d381fa54d92697 Mon Sep 17 00:00:00 2001 From: null Date: Sat, 6 Jun 2026 17:17:10 -0500 Subject: [PATCH] =?UTF-8?q?fix:=20v0.94=20migration=20signature=20?= =?UTF-8?q?=E2=80=94=20run(db)=20=E2=86=92=20run()?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- db/database.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/database.js b/db/database.js index 0874d8a..afee87e 100644 --- a/db/database.js +++ b/db/database.js @@ -3060,7 +3060,7 @@ function runMigrations() { { version: 'v0.94', description: 'security: session token hashing + geolocation opt-in setting', - run(db) { + run() { // Seed the geolocation setting (default off) for existing installations db.prepare("INSERT OR IGNORE INTO settings (key, value) VALUES ('geolocation_enabled', 'false')").run(); console.log('[v0.94] geolocation_enabled setting seeded');