loginDialog: Fix TypeError when user is deleted
LoginDialog has a private _user, but UserListItem has a public user. Easy to get wrong since _user would be the right thing to type in 90% of this file.
This commit is contained in:
parent
2ed3482d54
commit
293bc98394
@ -96,7 +96,7 @@ const UserListItem = new Lang.Class({
|
||||
},
|
||||
|
||||
_onDestroy: function() {
|
||||
this._user.disconnect(this._userChangedId);
|
||||
this.user.disconnect(this._userChangedId);
|
||||
},
|
||||
|
||||
_onClicked: function() {
|
||||
|
Loading…
Reference in New Issue
Block a user