From d30a5153cca335ff6f23cc5a3019001913df0edd Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Thu, 10 Jun 2021 23:05:46 +0200 Subject: Fix JSON formatting for one-time-key signature creation --- lib/crypto/qolmaccount.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/crypto/qolmaccount.cpp b/lib/crypto/qolmaccount.cpp index 6b7bc9a9..22b1faef 100644 --- a/lib/crypto/qolmaccount.cpp +++ b/lib/crypto/qolmaccount.cpp @@ -206,7 +206,7 @@ SignedOneTimeKey QOlmAccount::signedOneTimeKey(const QByteArray &key, const QStr QByteArray QOlmAccount::signOneTimeKey(const QString &key) const { QJsonDocument j(QJsonObject{{"key", key}}); - return sign(j.toJson()); + return sign(j.toJson(QJsonDocument::Compact)); } std::optional QOlmAccount::removeOneTimeKeys(const std::unique_ptr &session) const -- cgit v1.2.3