diff --git a/libs/common/src/state-migrations/migrations/66-move-final-desktop-settings.ts b/libs/common/src/state-migrations/migrations/66-move-final-desktop-settings.ts index acb891139a..726a8a060b 100644 --- a/libs/common/src/state-migrations/migrations/66-move-final-desktop-settings.ts +++ b/libs/common/src/state-migrations/migrations/66-move-final-desktop-settings.ts @@ -46,10 +46,10 @@ export class MoveFinalDesktopSettingsMigrator extends Migrator<65, 66> { updatedGlobal = true; } - if (enableBrowserIntegrationValue != null) { + if (enableBrowserIntegrationFingerprintValue != null) { await helper.setToGlobal( BROWSER_INTEGRATION_FINGERPRINT_ENABLED, - enableBrowserIntegrationFingerprintValue ?? false, + enableBrowserIntegrationFingerprintValue, ); delete legacyGlobal.enableBrowserIntegrationFingerprint; updatedGlobal = true;