diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-09-26 13:52:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-26 13:52:22 +0200 |
commit | 15b840d82d4794358fbf1271ea76e446b47db7e5 (patch) | |
tree | aa5fdaa81234a21c6919fac4958f84d7c26cd397 /lib/connection.cpp | |
parent | 72e14cb1bdff68dfe0fb61fff0defd6c50dff43c (diff) | |
parent | 5904a61c59f0eef00aef07ef998658fd791ff139 (diff) | |
download | libquotient-15b840d82d4794358fbf1271ea76e446b47db7e5.tar.gz libquotient-15b840d82d4794358fbf1271ea76e446b47db7e5.zip |
Merge branch 'dev' into kitsune/unify-olm-errors
Diffstat (limited to 'lib/connection.cpp')
-rw-r--r-- | lib/connection.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/connection.cpp b/lib/connection.cpp index 51c2062f..4547474a 100644 --- a/lib/connection.cpp +++ b/lib/connection.cpp @@ -1002,6 +1002,9 @@ bool Connection::Private::processIfVerificationEvent(const Event& evt, emit q->newKeyVerificationSession(*sessionIter); return true; }, + [](const KeyVerificationDoneEvent&) { + return true; + }, [this](const KeyVerificationEvent& kvEvt) { if (auto* const session = verificationSessions.value(kvEvt.transactionId())) { |