Bugfixes in fetching of occupants

This commit is contained in:
JC Brand 2019-05-15 14:30:43 +02:00
parent 85fc91d7a1
commit 9a94e5b47e

View File

@ -229,11 +229,11 @@ converse.plugins.add('converse-muc', {
);
this.occupants.chatroom = this;
this.occupants.fetched = new Promise(resolve => {
this.fetch({
this.occupants.fetch({
'add': true,
'silent': true,
'success': resolve,
'failure': resolve
'error': resolve
});
});