From d3c6dd75bb490ab8ca24476b665b42e56b2f7902 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Thu, 4 Nov 2021 14:07:34 +0100 Subject: [PATCH] Revert !1999 The changes introduce crashes, so back out until we figure those out. This reverts commits ceee53aa0a4 and 5d5bfe492cd81. Part-of: --- js/ui/unlockDialog.js | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/js/ui/unlockDialog.js b/js/ui/unlockDialog.js index 3ef6aa90f..370385abc 100644 --- a/js/ui/unlockDialog.js +++ b/js/ui/unlockDialog.js @@ -676,14 +676,16 @@ var UnlockDialog = GObject.registerClass({ } _ensureAuthPrompt() { - if (!this._authPrompt) { - this._authPrompt = new AuthPrompt.AuthPrompt(this._gdmClient, - AuthPrompt.AuthPromptMode.UNLOCK_ONLY); - this._authPrompt.connect('failed', this._fail.bind(this)); - this._authPrompt.connect('cancelled', this._fail.bind(this)); - this._authPrompt.connect('reset', this._onReset.bind(this)); - this._promptBox.add_child(this._authPrompt); - } + if (this._authPrompt) + return; + + this._authPrompt = new AuthPrompt.AuthPrompt(this._gdmClient, + AuthPrompt.AuthPromptMode.UNLOCK_ONLY); + this._authPrompt.connect('failed', this._fail.bind(this)); + this._authPrompt.connect('cancelled', this._fail.bind(this)); + this._authPrompt.connect('reset', this._onReset.bind(this)); + + this._promptBox.add_child(this._authPrompt); this._authPrompt.reset(); this._authPrompt.updateSensitivity(true); @@ -870,11 +872,7 @@ var UnlockDialog = GObject.registerClass({ } finish(onComplete) { - if (!this._authPrompt) { - onComplete(); - return; - } - + this._ensureAuthPrompt(); this._authPrompt.finish(onComplete); }