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,7 +92,9 @@ export class Room extends EventEmitter {
|
|||
this._roomEncryption = this._createRoomEncryption(this, encryptionParams);
|
||||
if (this._roomEncryption) {
|
||||
this._sendQueue.enableEncryption(this._roomEncryption);
|
||||
this._timeline.enableEncryption(this._decryptEntries.bind(this));
|
||||
if (this._timeline) {
|
||||
this._timeline.enableEncryption(this._decryptEntries.bind(this));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue