mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +03:00
WidgetEchoStore improve update event to include roomId and widgetId
This commit is contained in:
parent
07f7ff6831
commit
b75e2aa299
1 changed files with 2 additions and 2 deletions
|
@ -93,13 +93,13 @@ class WidgetEchoStore extends EventEmitter {
|
|||
if (this._roomWidgetEcho[roomId] === undefined) this._roomWidgetEcho[roomId] = {};
|
||||
|
||||
this._roomWidgetEcho[roomId][widgetId] = state;
|
||||
this.emit('update');
|
||||
this.emit('update', roomId, widgetId);
|
||||
}
|
||||
|
||||
removeRoomWidgetEcho(roomId, widgetId) {
|
||||
delete this._roomWidgetEcho[roomId][widgetId];
|
||||
if (Object.keys(this._roomWidgetEcho[roomId]).length === 0) delete this._roomWidgetEcho[roomId];
|
||||
this.emit('update');
|
||||
this.emit('update', roomId, widgetId);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue