Bug 1929355 - fix reconnecting FxA accounts after a password change. r=lina

Differential Revision: https://phabricator.services.mozilla.com/D228079
This commit is contained in:
Mark Hammond 2024-11-06 02:26:19 +00:00
Родитель 1598377370
Коммит 3a3d8155c8
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -538,7 +538,9 @@ FxAccountsWebChannelHelpers.prototype = {
);
await this._disconnect();
} else {
existingServices = JSON.parse(signedInUser.requestedServices);
existingServices = signedInUser.requestedServices
? JSON.parse(signedInUser.requestedServices)
: {};
log.debug(
"Webchannel is updating the info for an already logged in user."
);