Skip to content

Commit

Permalink
show error message on error confirming payment sent
Browse files Browse the repository at this point in the history
  • Loading branch information
woodser committed Jan 23, 2024
1 parent c749af6 commit 30ee3b0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ private void confirmPaymentSent() {
model.dataModel.onPaymentSent(() -> {
}, errorMessage -> {
busyAnimation.stop();
new Popup().warning(Res.get("popup.warning.sendMsgFailed")).show();
new Popup().warning(Res.get("popup.warning.sendMsgFailed") + "\n\n" + errorMessage).show();
confirmButton.setDisable(!confirmPaymentSentPermitted());
UserThread.execute(() -> statusLabel.setText("Error confirming payment sent."));
});
Expand Down

0 comments on commit 30ee3b0

Please sign in to comment.