mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 05:55:00 +08:00
WidgetEchoStore improve update event to include roomId and widgetId
This commit is contained in:
parent
07f7ff6831
commit
b75e2aa299
@ -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 New Issue
Block a user