be forgiving when dispose has already been called
This commit is contained in:
parent
544019f67d
commit
c3dfdde626
1 changed files with 1 additions and 1 deletions
|
@ -377,7 +377,7 @@ export class Session {
|
||||||
this._olmWorker = undefined;
|
this._olmWorker = undefined;
|
||||||
this._sessionBackup?.dispose();
|
this._sessionBackup?.dispose();
|
||||||
this._sessionBackup = undefined;
|
this._sessionBackup = undefined;
|
||||||
this._megolmDecryption.dispose();
|
this._megolmDecryption?.dispose();
|
||||||
this._megolmDecryption = undefined;
|
this._megolmDecryption = undefined;
|
||||||
this._e2eeAccount?.dispose();
|
this._e2eeAccount?.dispose();
|
||||||
this._e2eeAccount = undefined;
|
this._e2eeAccount = undefined;
|
||||||
|
|
Reference in a new issue