From a54f828fb4951bc3eb89075687f47e6c2404ed6d Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Mon, 20 Sep 2021 01:15:51 +0200 Subject: [PATCH] Fix a few verification typos --- resources/qml/device-verification/Failed.qml | 2 +- src/DeviceVerificationFlow.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/qml/device-verification/Failed.qml b/resources/qml/device-verification/Failed.qml index 71ef8b9b..4d49e6d6 100644 --- a/resources/qml/device-verification/Failed.qml +++ b/resources/qml/device-verification/Failed.qml @@ -33,7 +33,7 @@ Pane { case DeviceVerificationFlow.User: return qsTr("Other party canceled the verification."); case DeviceVerificationFlow.OutOfOrder: - return qsTr("Device verification timed out."); + return qsTr("Verification messages received out of order!"); default: return "Unknown verification error."; } diff --git a/src/DeviceVerificationFlow.cpp b/src/DeviceVerificationFlow.cpp index d4e27022..2481d4f9 100644 --- a/src/DeviceVerificationFlow.cpp +++ b/src/DeviceVerificationFlow.cpp @@ -378,7 +378,7 @@ DeviceVerificationFlow::DeviceVerificationFlow(QObject *, &ChatPage::receivedDeviceVerificationDone, this, [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.value() != this->transaction_id) return;