From 669a90bac0b29c94c9b8bc5b7b4c34e387df7b77 Mon Sep 17 00:00:00 2001 From: tobtoht Date: Tue, 18 Apr 2023 13:52:38 +0200 Subject: [PATCH] Ledger: add firmware upgrade note --- src/MainWindow.cpp | 3 ++- src/WindowManager.cpp | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 65d0aeb..899cea5 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -482,7 +482,8 @@ void MainWindow::displayWalletErrorMsg(const QString &err) { } if (errMsg.contains("SW_CLIENT_NOT_SUPPORTED")) { - errMsg += "\n\nIncompatible version: you may need to upgrade the Monero app on the Ledger device to the latest version."; + errMsg += "\n\nIncompatible version: upgrade your Ledger device firmware to the latest version using Ledger Live.\n" + "Then upgrade the Monero app for the Ledger device to the latest version."; } else if (errMsg.contains("Wrong Device Status")) { errMsg += "\n\nThe device may need to be unlocked."; diff --git a/src/WindowManager.cpp b/src/WindowManager.cpp index 153a8e2..820fa5a 100644 --- a/src/WindowManager.cpp +++ b/src/WindowManager.cpp @@ -431,7 +431,8 @@ void WindowManager::displayWalletErrorMessage(const QString &message) { } if (message.contains("SW_CLIENT_NOT_SUPPORTED")) { - errMsg += "\n\nIncompatible version: you may need to upgrade the Monero app on the Ledger device to the latest version."; + errMsg += "\n\nIncompatible version: upgrade your Ledger device firmware to the latest version using Ledger Live.\n" + "Then upgrade the Monero app for the Ledger device to the latest version."; } else if (message.contains("Wrong Device Status")) { errMsg += "\n\nThe device may need to be unlocked.";