Bug 972144 - don't show error notification for LOGIN_FAILED_NOT_READY. r=ttaubert

This commit is contained in:
Mark Hammond 2014-02-14 09:06:33 +11:00
Родитель 53ceaac97e
Коммит f1829f3650
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -161,6 +161,11 @@ let gSyncUI = {
this.updateUI();
return;
}
// if we are still waiting for the identity manager to initialize, don't show errors
if (Weave.Status.login == Weave.LOGIN_FAILED_NOT_READY) {
this.updateUI();
return;
}
let title = this._stringBundle.GetStringFromName("error.login.title");