Fix typo in key export

This commit is contained in:
Nicolas Werner 2022-04-08 03:33:00 +02:00
parent f316dbed43
commit cf38e6974a
1 changed files with 2 additions and 1 deletions

View File

@ -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;