зеркало из https://github.com/mozilla/gecko-dev.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:
Родитель
4288eb1f60
Коммит
8d75dbcc19
|
@ -1405,7 +1405,9 @@ WeaveSvc.prototype = {
|
|||
|
||||
_ignorableErrorCount: 0,
|
||||
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);
|
||||
},
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче