forked from mystiq/hydrogen-web
ensure /keys/query devices have the keys we need
This commit is contained in:
parent
c32ac2c764
commit
3e100ff5ec
1 changed files with 7 additions and 2 deletions
|
@ -26,8 +26,8 @@ function deviceKeysAsDeviceIdentity(deviceSection) {
|
||||||
return {
|
return {
|
||||||
userId,
|
userId,
|
||||||
deviceId,
|
deviceId,
|
||||||
ed25519Key: deviceSection.keys?.[`ed25519:${deviceId}`],
|
ed25519Key: deviceSection.keys[`ed25519:${deviceId}`],
|
||||||
curve25519Key: deviceSection.keys?.[`curve25519:${deviceId}`],
|
curve25519Key: deviceSection.keys[`curve25519:${deviceId}`],
|
||||||
algorithms: deviceSection.algorithms,
|
algorithms: deviceSection.algorithms,
|
||||||
displayName: deviceSection.unsigned?.device_display_name,
|
displayName: deviceSection.unsigned?.device_display_name,
|
||||||
};
|
};
|
||||||
|
@ -200,6 +200,11 @@ export class DeviceTracker {
|
||||||
if (deviceIdOnKeys !== deviceId) {
|
if (deviceIdOnKeys !== deviceId) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
const ed25519Key = deviceKeys.keys?.[`ed25519:${deviceId}`];
|
||||||
|
const curve25519Key = deviceKeys.keys?.[`curve25519:${deviceId}`];
|
||||||
|
if (typeof ed25519Key !== "string" || typeof curve25519Key !== "string") {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
// don't store our own device
|
// don't store our own device
|
||||||
if (userId === this._ownUserId && deviceId === this._ownDeviceId) {
|
if (userId === this._ownUserId && deviceId === this._ownDeviceId) {
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue