Fix #1664 Blacklisting converse-profile makes the control box totally blank

This commit is contained in:
Réda Housni Alaoui 2019-08-04 11:38:59 +02:00 committed by JC Brand
parent d90bcd5274
commit edcb8e28c2
2 changed files with 4 additions and 0 deletions

View File

@ -59,6 +59,7 @@
- #1579: Trim spaces at the beginning and end of a JID (when adding contact)
- #1585: Upload files by pasting from clipboard
- #1586: Not possible to kick someone with a space in their nickname
- #1664: Blacklisting converse-profile makes the control box totally blank
### Breaking changes

View File

@ -476,6 +476,9 @@ converse.plugins.add('converse-controlbox', {
className: 'controlbox-pane',
initialize () {
if (!_converse.XMPPStatusView) {
return;
}
_converse.xmppstatusview = new _converse.XMPPStatusView({
'model': _converse.xmppstatus
});