diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-09-24 18:22:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-24 18:22:43 +0200 |
commit | 62f9e5b7d1227a85f80ae49abcb555e4fe4c52f0 (patch) | |
tree | 09109cc2108884984e2039da9b74811149b931bf /lib/keyverificationsession.cpp | |
parent | 8594f075d3e2fdfb2e4d5c9340167df569f3b53e (diff) | |
parent | 63d658e798c1ba29d080564db06a613a3d7d5df5 (diff) | |
download | libquotient-62f9e5b7d1227a85f80ae49abcb555e4fe4c52f0.tar.gz libquotient-62f9e5b7d1227a85f80ae49abcb555e4fe4c52f0.zip |
Merge #573: Fix verification
Diffstat (limited to 'lib/keyverificationsession.cpp')
-rw-r--r-- | lib/keyverificationsession.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/keyverificationsession.cpp b/lib/keyverificationsession.cpp index 3f76eac1..f5d49561 100644 --- a/lib/keyverificationsession.cpp +++ b/lib/keyverificationsession.cpp @@ -120,7 +120,7 @@ void KeyVerificationSession::handleEvent(const KeyVerificationEvent& baseEvent) return true; }, [this](const KeyVerificationMacEvent& event) { - if (state() != WAITINGFORMAC) + if (state() != WAITINGFORMAC && state() != WAITINGFORVERIFICATION) return false; handleMac(event); return true; |