From 23cc59f52a737113321538ad79862ef3116be754 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Dre=C3=9Fler?= Date: Sun, 23 Jun 2019 11:40:42 +0200 Subject: [PATCH] polkitAgent: Fix a typo of a signal name https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/788 --- js/ui/components/polkitAgent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/components/polkitAgent.js b/js/ui/components/polkitAgent.js index e28bcec4a..ed40dbef7 100644 --- a/js/ui/components/polkitAgent.js +++ b/js/ui/components/polkitAgent.js @@ -52,7 +52,7 @@ var AuthenticationDialog = GObject.registerClass({ this._user = AccountsService.UserManager.get_default().get_user(userName); let userRealName = this._user.get_real_name(); - this._userLoadedId = this._user.connect('notify::is_loaded', + this._userLoadedId = this._user.connect('notify::is-loaded', this._onUserChanged.bind(this)); this._userChangedId = this._user.connect('changed', this._onUserChanged.bind(this));