From 7e5a690a67d312d3fa57dccb27ed3d40e056706b Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 17 Mar 2026 12:54:36 +0100 Subject: [PATCH] fix(qrcode): Enable one-time QR codes by default for 34 Signed-off-by: Joas Schilling --- apps/settings/lib/ConfigLexicon.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/settings/lib/ConfigLexicon.php b/apps/settings/lib/ConfigLexicon.php index 415ec2f487b..6897f4759b0 100644 --- a/apps/settings/lib/ConfigLexicon.php +++ b/apps/settings/lib/ConfigLexicon.php @@ -35,7 +35,7 @@ class ConfigLexicon implements ILexicon { public function getAppConfigs(): array { return [ - new Entry(key: self::LOGIN_QRCODE_ONETIME, type: ValueType::BOOL, defaultRaw: false, definition: 'Use onetime QR codes for app passwords', note: 'Limits compatibility for mobile apps to versions released in 2026 or later'), + new Entry(key: self::LOGIN_QRCODE_ONETIME, type: ValueType::BOOL, defaultRaw: true, definition: 'Use onetime QR codes for app passwords', note: 'Limits compatibility for mobile apps to versions released in 2026 or later'), ]; }