summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@ymail.com>2022-04-08 03:33:00 +0200
committerNicolas Werner <nicolas.werner@ymail.com>2022-04-08 03:33:00 +0200
commitcf38e6974a6b730d9f98bd570f60445843f4ae90 (patch)
treed0966761844a8372c2c5b6d7e72d7d51e9702fb1 /src
parentFix a few issues with receiving to_device messages in initial sync (diff)
downloadnheko-cf38e6974a6b730d9f98bd570f60445843f4ae90.tar.xz
Fix typo in key export
Diffstat (limited to 'src')
-rw-r--r--src/Cache.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Cache.cpp b/src/Cache.cpp

index ff8c7651..f4a014c1 100644 --- a/src/Cache.cpp +++ b/src/Cache.cpp
@@ -609,9 +609,10 @@ Cache::exportSessionKeys() if (!data.sender_claimed_ed25519_key.empty()) exported.sender_claimed_keys["ed25519"] = data.sender_claimed_ed25519_key; exported.forwarding_curve25519_key_chain = data.forwarding_curve25519_key_chain; + } else { + continue; } - continue; } catch (std::exception &e) { nhlog::db()->error("Failed to retrieve Megolm Session Data: {}", e.what()); continue;