From 41b5a7d7ef200e014393b85cabcc26d7b097c523 Mon Sep 17 00:00:00 2001 From: Jonathan Leroy Date: Fri, 15 May 2026 09:38:49 +0200 Subject: [PATCH] Fix varible assignment --- internal/migrations/v2.2.2.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/migrations/v2.2.2.go b/internal/migrations/v2.2.2.go index 31aab409..b2fdc223 100644 --- a/internal/migrations/v2.2.2.go +++ b/internal/migrations/v2.2.2.go @@ -22,7 +22,7 @@ func V2_2_2(db *sqlx.DB, fs stuffbin.FileSystem, ko *koanf.Koanf) error { } for localeCode, localeRegion := range langMap { - _, err = db.Exec(fmt.Sprintf(` + _, err := db.Exec(fmt.Sprintf(` UPDATE settings SET value = '"%s"'::jsonb, updated_at = now() WHERE key = 'app.lang' AND value = '"%s"'::jsonb; `, localeRegion, localeCode))