зеркало из https://github.com/mozilla/pjs.git
Bug 668542 - Cancelling MP unlock will trigger an error and point user to Sync Preferences dialog window. r=rnewman
This commit is contained in:
Родитель
55f84881f6
Коммит
2f3fd62baa
|
@ -1405,7 +1405,9 @@ WeaveSvc.prototype = {
|
||||||
|
|
||||||
_ignorableErrorCount: 0,
|
_ignorableErrorCount: 0,
|
||||||
shouldIgnoreError: function shouldIgnoreError() {
|
shouldIgnoreError: function shouldIgnoreError() {
|
||||||
return ([Status.login, Status.sync].indexOf(LOGIN_FAILED_NETWORK_ERROR) != -1
|
// Never show an error bar for a locked master password.
|
||||||
|
return (Status.login == MASTER_PASSWORD_LOCKED) ||
|
||||||
|
([Status.login, Status.sync].indexOf(LOGIN_FAILED_NETWORK_ERROR) != -1
|
||||||
&& this._ignorableErrorCount < MAX_IGNORE_ERROR_COUNT);
|
&& this._ignorableErrorCount < MAX_IGNORE_ERROR_COUNT);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче