зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1180106 - don't attempt to fetch an FxA user profile when no user is logged in. r=oeger
This commit is contained in:
Родитель
fcca063783
Коммит
2564420a2a
|
@ -313,7 +313,7 @@ let gFxAccounts = {
|
|||
fxAccounts.getSignedInUser().then(userData => {
|
||||
// userData may be null here when the user is not signed-in, but that's expected
|
||||
updateWithUserData(userData);
|
||||
return fxAccounts.getSignedInUserProfile();
|
||||
return userData ? fxAccounts.getSignedInUserProfile() : null;
|
||||
}).then(profile => {
|
||||
if (!profile) {
|
||||
return;
|
||||
|
|
Загрузка…
Ссылка в новой задаче