1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-26 17:03:12 +03:00
This commit is contained in:
David Baker
2019-10-28 15:42:42 +00:00
parent 3bec28b2ff
commit de1b545df1
6 changed files with 27 additions and 17 deletions

View File

@@ -756,7 +756,7 @@ class DeviceListUpdateSerialiser {
downloadUsers, opts,
).then((res) => {
const dk = res.device_keys || {};
const master_keys = res.master_keys || {};
const masterKeys = res.masterKeys || {};
const ssks = res.self_signing_keys || {};
const usks = res.user_signing_keys || {};
@@ -770,7 +770,7 @@ class DeviceListUpdateSerialiser {
prom = prom.delay(5).then(() => {
return this._processQueryResponseForUser(
userId, dk[userId], {
master: master_keys[userId],
master: masterKeys[userId],
self_signing: ssks[userId],
user_signing: usks[userId],
},