1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 23:33:31 +00:00

[PM-9440] Fix: handle undefined value in migration 66 (#9908)

* fix: handle undefined value in migration 66

* fix: the if-statement was typo
This commit is contained in:
Andreas Coroiu
2024-07-03 09:58:23 +02:00
committed by GitHub
parent 781ef550c1
commit 83b8c0d50f

View File

@@ -46,7 +46,7 @@ export class MoveFinalDesktopSettingsMigrator extends Migrator<65, 66> {
updatedGlobal = true; updatedGlobal = true;
} }
if (enableBrowserIntegrationValue != null) { if (enableBrowserIntegrationFingerprintValue != null) {
await helper.setToGlobal( await helper.setToGlobal(
BROWSER_INTEGRATION_FINGERPRINT_ENABLED, BROWSER_INTEGRATION_FINGERPRINT_ENABLED,
enableBrowserIntegrationFingerprintValue, enableBrowserIntegrationFingerprintValue,