From 5d3fe54fdfae4b74272a80c4bbe8f5d8a3e4c5cb Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Thu, 20 May 2021 15:44:02 +0200 Subject: Fix signature verification logic --- lib/connection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.3