don't assume we have a timeline
This commit is contained in:
parent
9b771120e4
commit
1af118a443
1 changed files with 3 additions and 1 deletions
|
@ -92,9 +92,11 @@ export class Room extends EventEmitter {
|
|||
this._roomEncryption = this._createRoomEncryption(this, encryptionParams);
|
||||
if (this._roomEncryption) {
|
||||
this._sendQueue.enableEncryption(this._roomEncryption);
|
||||
if (this._timeline) {
|
||||
this._timeline.enableEncryption(this._decryptEntries.bind(this));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
async _decryptEntry(entry, txn, isSync) {
|
||||
if (entry.eventType === "m.room.encrypted") {
|
||||
|
|
Reference in a new issue