1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

In-memory keys need an object

This commit is contained in:
J. Ryan Stinnett
2019-11-20 17:35:10 +00:00
parent 9dea848927
commit c568c15186

View File

@@ -223,7 +223,7 @@ class MatrixClientPeg {
if (SettingsStore.isFeatureEnabled("feature_cross_signing")) {
// TODO: Cross-signing keys are temporarily in memory only. A
// separate task in the cross-signing project will build from here.
const keys = [];
const keys = {};
opts.cryptoCallbacks = {
getCrossSigningKey: k => keys[k],
saveCrossSigningKeys: newKeys => Object.assign(keys, newKeys),