diff options
author | Tobias Fella <fella@posteo.de> | 2022-03-07 19:56:10 +0100 |
---|---|---|
committer | Tobias Fella <fella@posteo.de> | 2022-03-07 19:56:41 +0100 |
commit | fb9d7dc22c74022b914b1964965ed6b8b850d831 (patch) | |
tree | 2b6e4b0b8bdfbd9b2b0b8e38e8257c0506532f5d /lib/connection.h | |
parent | 66918a4c7d393a8b22de7bf23009651dbd919366 (diff) | |
download | libquotient-fb9d7dc22c74022b914b1964965ed6b8b850d831.tar.gz libquotient-fb9d7dc22c74022b914b1964965ed6b8b850d831.zip |
Store the device's ed25519 in the database
Diffstat (limited to 'lib/connection.h')
-rw-r--r-- | lib/connection.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/connection.h b/lib/connection.h index 4a475319..a4986b06 100644 --- a/lib/connection.h +++ b/lib/connection.h @@ -318,7 +318,7 @@ public: QOlmAccount* olmAccount() const; Database* database(); UnorderedMap<std::pair<QString, QString>, QOlmInboundGroupSessionPtr> loadRoomMegolmSessions(Room* room); - void saveMegolmSession(Room* room, const QString& senderKey, QOlmInboundGroupSession* session); + void saveMegolmSession(Room* room, const QString& senderKey, QOlmInboundGroupSession* session, const QString& ed25519Key); #endif // Quotient_E2EE_ENABLED Q_INVOKABLE Quotient::SyncJob* syncJob() const; Q_INVOKABLE int millisToReconnect() const; |