We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e5e289 commit faf5c75Copy full SHA for faf5c75
packages/host/app/services/matrix-service.ts
@@ -860,6 +860,12 @@ export default class MatrixService extends Service {
860
this.unbindEventListeners();
861
this._client = this.matrixSDK.createClient({ baseUrl: matrixURL });
862
this.cardHashes = new Map();
863
+ this.skillCardHashes = new Map();
864
+ this._currentRoomId = undefined;
865
+ this.messagesToSend = new TrackedMap();
866
+ this.cardsToSend = new TrackedMap();
867
+ this.filesToSend = new TrackedMap();
868
+ this.currentUserEventReadReceipts = new TrackedMap();
869
}
870
871
private bindEventListeners() {
0 commit comments