From 03b497da53fdf84f51624b23a03118073a16064b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Tue, 27 Feb 2024 23:34:13 +0100 Subject: [PATCH] gdm/util: Catch errors on re-authentication --- js/gdm/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/gdm/util.js b/js/gdm/util.js index bba03c0be..2f8ea9cc7 100644 --- a/js/gdm/util.js +++ b/js/gdm/util.js @@ -230,7 +230,7 @@ export class ShellUserVerifier extends Signals.EventEmitter { // If possible, reauthenticate an already running session, // so any session specific credentials get updated appropriately if (userName) - this._openReauthenticationChannel(userName); + this._openReauthenticationChannel(userName).catch(logError); else this._getUserVerifier(); }