Decrypt reaction events

This commit is contained in:
Robin
2024-11-10 10:44:29 -05:00
parent e79cae820f
commit 97aeb18a24
3 changed files with 22 additions and 8 deletions

View File

@@ -138,6 +138,13 @@ export class MockRoom extends EventEmitter {
this.testRedactedEvents.push(props);
return Promise.resolve({ event_id: randomUUID() });
},
decryptEventIfNeeded: async () => {},
on() {
return this;
},
off() {
return this;
},
} as unknown as MatrixClient;
}