Make sure to always pass a list in the "usersChanged" event.

Signed-off-by: Joachim Bauch <bauch@struktur.de>
This commit is contained in:
Joachim Bauch 2018-02-02 08:56:09 +01:00
Родитель 314b450774
Коммит e738a7a98c
Не удалось извлечь подпись
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1184,7 +1184,7 @@
OCA.Talk.Signaling.Standalone.prototype.processRoomParticipantsEvent = function(data) {
switch (data.event.type) {
case "update":
this._trigger("usersChanged", [data.event.update.users]);
this._trigger("usersChanged", [data.event.update.users || []]);
this._trigger("participantListChanged");
this.internalSyncRooms();
break;