gdm: Correct placement of verification-failed emission
If we fail to verify, and don't have any pending messages, we'll retry or cancel, which will cause a state change to VERIFYING or NOT_VERIFYING, and then change the state again to VERIFICATION_FAILED, messing up our state machine.
This commit is contained in:
parent
5b4337f716
commit
82b8b32355
@ -501,6 +501,8 @@ const ShellUserVerifier = new Lang.Class({
|
|||||||
let canRetry = retry && this._userName &&
|
let canRetry = retry && this._userName &&
|
||||||
this._failCounter < this._settings.get_int(ALLOWED_FAILURES_KEY);
|
this._failCounter < this._settings.get_int(ALLOWED_FAILURES_KEY);
|
||||||
|
|
||||||
|
this.emit('verification-failed');
|
||||||
|
|
||||||
if (canRetry) {
|
if (canRetry) {
|
||||||
if (!this.hasPendingMessages) {
|
if (!this.hasPendingMessages) {
|
||||||
this._retry();
|
this._retry();
|
||||||
@ -522,8 +524,6 @@ const ShellUserVerifier = new Lang.Class({
|
|||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.emit('verification-failed');
|
|
||||||
},
|
},
|
||||||
|
|
||||||
_onConversationStopped: function(client, serviceName) {
|
_onConversationStopped: function(client, serviceName) {
|
||||||
|
Loading…
Reference in New Issue
Block a user