diff --git a/WalletWasabi.Gui/Controls/WalletExplorer/SendTabViewModel.cs b/WalletWasabi.Gui/Controls/WalletExplorer/SendTabViewModel.cs index a1db04dbec7..b91c6aa58a4 100644 --- a/WalletWasabi.Gui/Controls/WalletExplorer/SendTabViewModel.cs +++ b/WalletWasabi.Gui/Controls/WalletExplorer/SendTabViewModel.cs @@ -482,10 +482,16 @@ private async Task<(bool success, string error)> TryRefreshHardwareWalletInfoAsy return (false, "Hardware wallet still needs a PIN."); } } - return (false, "Could not find hardware wallet. Make sure it's plugged in and you're logged in with your PIN."); } - return (true, null); + if (keyManager.HardwareWalletInfo is null) + { + return (false, "Could not find hardware wallet. Make sure it's plugged in and you're logged in with your PIN."); + } + else + { + return (true, null); + } } private void SetSendText()