Skip to content

Commit

Permalink
[PM-9440] Fix: handle undefined value in migration 66 (#9908)
Browse files Browse the repository at this point in the history
* fix: handle undefined value in migration 66

* fix: the if-statement was typo

(cherry picked from commit 83b8c0d)
  • Loading branch information
coroiu committed Jul 9, 2024
1 parent 36da3c1 commit 7230cb2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export class MoveFinalDesktopSettingsMigrator extends Migrator<65, 66> {
updatedGlobal = true;
}

if (enableBrowserIntegrationValue != null) {
if (enableBrowserIntegrationFingerprintValue != null) {
await helper.setToGlobal(
BROWSER_INTEGRATION_FINGERPRINT_ENABLED,
enableBrowserIntegrationFingerprintValue,
Expand Down

0 comments on commit 7230cb2

Please sign in to comment.