diff options
author | Tobias Fella <fella@posteo.de> | 2021-05-20 15:44:02 +0200 |
---|---|---|
committer | Tobias Fella <fella@posteo.de> | 2021-12-01 21:56:11 +0100 |
commit | 5d3fe54fdfae4b74272a80c4bbe8f5d8a3e4c5cb (patch) | |
tree | d00d6d3ebdbb129f633c6ab83aa25de326c7e967 /lib | |
parent | 6449f66152396ed539904b0e89d41601aeadf30d (diff) | |
download | libquotient-5d3fe54fdfae4b74272a80c4bbe8f5d8a3e4c5cb.tar.gz libquotient-5d3fe54fdfae4b74272a80c4bbe8f5d8a3e4c5cb.zip |
Fix signature verification logic
Diffstat (limited to 'lib')
-rw-r--r-- | lib/connection.cpp | 2 |
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; } |