1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-03-12 13:39:14 +01:00

fix: the if-statement was typo

This commit is contained in:
Andreas Coroiu 2024-07-02 13:48:47 +02:00
parent ea0e66acec
commit e615bf0898
No known key found for this signature in database
GPG Key ID: E70B5FFC81DFEC1A

View File

@ -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;