Skip to content
Snippets Groups Projects
Verified Commit a54f828f authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Fix a few verification typos

parent d1c8149d
No related branches found
No related tags found
No related merge requests found
Pipeline #1817 passed
...@@ -33,7 +33,7 @@ Pane { ...@@ -33,7 +33,7 @@ Pane {
case DeviceVerificationFlow.User: case DeviceVerificationFlow.User:
return qsTr("Other party canceled the verification."); return qsTr("Other party canceled the verification.");
case DeviceVerificationFlow.OutOfOrder: case DeviceVerificationFlow.OutOfOrder:
return qsTr("Device verification timed out."); return qsTr("Verification messages received out of order!");
default: default:
return "Unknown verification error."; return "Unknown verification error.";
} }
......
...@@ -378,7 +378,7 @@ DeviceVerificationFlow::DeviceVerificationFlow(QObject *, ...@@ -378,7 +378,7 @@ DeviceVerificationFlow::DeviceVerificationFlow(QObject *,
&ChatPage::receivedDeviceVerificationDone, &ChatPage::receivedDeviceVerificationDone,
this, this,
[this](const mtx::events::msg::KeyVerificationDone &msg) { [this](const mtx::events::msg::KeyVerificationDone &msg) {
nhlog::crypto()->info("verification: receoved done"); nhlog::crypto()->info("verification: received done");
if (msg.transaction_id.has_value()) { if (msg.transaction_id.has_value()) {
if (msg.transaction_id.value() != this->transaction_id) if (msg.transaction_id.value() != this->transaction_id)
return; return;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment