From efbf102b630b73b9e0bb5aa3243a8faa94e13b26 Mon Sep 17 00:00:00 2001 From: Jonh Wendell Date: Mon, 17 Jun 2013 17:12:07 -0300 Subject: [PATCH] gdm: clear the messages queue when the user answers a prompt the messages were being shown even when the user entered the right information they were asked for. https://bugzilla.gnome.org/show_bug.cgi?id=702458 --- js/gdm/util.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/gdm/util.js b/js/gdm/util.js index 6075e660f..cae3e1b23 100644 --- a/js/gdm/util.js +++ b/js/gdm/util.js @@ -164,6 +164,7 @@ const ShellUserVerifier = new Lang.Class({ answerQuery: function(serviceName, answer) { if (!this._userVerifier.hasPendingMessages) { + this._clearMessageQueue(); this._userVerifier.call_answer_query(serviceName, answer, this._cancellable, null); } else { let signalId = this._userVerifier.connect('no-more-messages',