forked from mystiq/hydrogen-web
english
This commit is contained in:
parent
e7598b9c76
commit
404dbcd065
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ export class Room extends EventEmitter {
|
||||||
async _prepareSyncDecryption(events, newKeys, roomEncryption, txn, log) {
|
async _prepareSyncDecryption(events, newKeys, roomEncryption, txn, log) {
|
||||||
let retryEntries;
|
let retryEntries;
|
||||||
let decryptPreparation;
|
let decryptPreparation;
|
||||||
// when new keys arrive, also see if any events that can now be retried to decrypt
|
// when new keys arrive, also see if any events can now be retried to decrypt
|
||||||
if (newKeys) {
|
if (newKeys) {
|
||||||
const entriesPerKey = await Promise.all(newKeys.map(key => this._getRetryDecryptEntriesForKey(key, txn)));
|
const entriesPerKey = await Promise.all(newKeys.map(key => this._getRetryDecryptEntriesForKey(key, txn)));
|
||||||
retryEntries = entriesPerKey.reduce((allEntries, entries) => allEntries.concat(entries), []);
|
retryEntries = entriesPerKey.reduce((allEntries, entries) => allEntries.concat(entries), []);
|
||||||
|
|
Loading…
Reference in a new issue