diff options
author | Tobias Fella <fella@posteo.de> | 2022-02-25 16:03:59 +0100 |
---|---|---|
committer | Tobias Fella <fella@posteo.de> | 2022-02-25 16:03:59 +0100 |
commit | b0e1455989405ef46eb6d9ed2cd559a1164d04f4 (patch) | |
tree | 1e8c749b31516e34776c86541543a1388e153f7e | |
parent | 9815e9a0a27f0c4a493ad96e9d865ee489ca9404 (diff) | |
download | libquotient-b0e1455989405ef46eb6d9ed2cd559a1164d04f4.tar.gz libquotient-b0e1455989405ef46eb6d9ed2cd559a1164d04f4.zip |
Ifdef
-rw-r--r-- | lib/connection.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/connection.cpp b/lib/connection.cpp index 4c614176..66df1e43 100644 --- a/lib/connection.cpp +++ b/lib/connection.cpp @@ -1829,10 +1829,12 @@ void Connection::saveState() const QJsonObject { { QStringLiteral("events"), accountDataEvents } }); } +#ifdef Quotient_E2EE_ENABLED { QJsonObject keysJson = toJson(d->oneTimeKeysCount); rootObj.insert(QStringLiteral("device_one_time_keys_count"), keysJson); } +#endif #if QT_VERSION >= QT_VERSION_CHECK(5, 15, 0) const auto data = |