From bd748549f7c84d53a2baac3bd2f0b30280768e1c Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Mon, 26 Apr 2021 10:45:27 +0200 Subject: [PATCH] fix updates in Invite not firing on collection --- src/matrix/room/Invite.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/matrix/room/Invite.js b/src/matrix/room/Invite.js index db6306d6..1c8f1bcc 100644 --- a/src/matrix/room/Invite.js +++ b/src/matrix/room/Invite.js @@ -105,7 +105,7 @@ export class Invite extends EventEmitter { _emitChange(params) { this.emit("change"); - this._emitCollectionUpdate(params); + this._emitCollectionUpdate(this, params); } load(inviteData, log) {