aboutsummaryrefslogtreecommitdiff
path: root/lib/e2ee
diff options
context:
space:
mode:
Diffstat (limited to 'lib/e2ee')
-rw-r--r--lib/e2ee/qolmaccount.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/e2ee/qolmaccount.cpp b/lib/e2ee/qolmaccount.cpp
index 4cfc6151..241ae750 100644
--- a/lib/e2ee/qolmaccount.cpp
+++ b/lib/e2ee/qolmaccount.cpp
@@ -160,8 +160,8 @@ UnsignedOneTimeKeys QOlmAccount::oneTimeKeys() const
OneTimeKeys QOlmAccount::signOneTimeKeys(const UnsignedOneTimeKeys &keys) const
{
OneTimeKeys signedOneTimeKeys;
- const auto& curveKeys = keys.curve25519();
- for (const auto& [keyId, key] : asKeyValueRange(curveKeys))
+ for (const auto& curveKeys = keys.curve25519();
+ const auto& [keyId, key] : asKeyValueRange(curveKeys))
signedOneTimeKeys["signed_curve25519:" % keyId] =
signedOneTimeKey(key.toUtf8(), sign(QJsonObject{{"key", key}}));
return signedOneTimeKeys;