fix param order
This commit is contained in:
parent
1af118a443
commit
e06cb1eb5f
1 changed files with 1 additions and 1 deletions
|
@ -299,7 +299,7 @@ export class Room extends EventEmitter {
|
|||
});
|
||||
gapResult = await gapWriter.writeFragmentFill(fragmentEntry, response, txn);
|
||||
if (this._roomEncryption) {
|
||||
gapResult.entries = await this._decryptEntries(gapResult.entries, false, txn);
|
||||
gapResult.entries = await this._decryptEntries(gapResult.entries, txn, false);
|
||||
}
|
||||
} catch (err) {
|
||||
txn.abort();
|
||||
|
|
Reference in a new issue