aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTobias Fella <fella@posteo.de>2021-05-20 15:44:02 +0200
committerTobias Fella <fella@posteo.de>2021-12-01 21:56:11 +0100
commit5d3fe54fdfae4b74272a80c4bbe8f5d8a3e4c5cb (patch)
treed00d6d3ebdbb129f633c6ab83aa25de326c7e967 /lib
parent6449f66152396ed539904b0e89d41601aeadf30d (diff)
downloadlibquotient-5d3fe54fdfae4b74272a80c4bbe8f5d8a3e4c5cb.tar.gz
libquotient-5d3fe54fdfae4b74272a80c4bbe8f5d8a3e4c5cb.zip
Fix signature verification logic
Diffstat (limited to 'lib')
-rw-r--r--lib/connection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/connection.cpp b/lib/connection.cpp
index 06b9bcbc..6facd316 100644
--- a/lib/connection.cpp
+++ b/lib/connection.cpp
@@ -1865,7 +1865,7 @@ void Connection::Private::loadOutdatedUserDevices()
qCWarning(E2EE) << "Unsupported encryption algorithms found" << device.algorithms;
continue;
}
- if(verifyIdentitySignature(device, device.deviceId, device.userId)) {
+ if(!verifyIdentitySignature(device, device.deviceId, device.userId)) {
qCWarning(E2EE) << "Failed to verify devicekeys signature. Skipping this device";
continue;
}