Skip to content

Commit

Permalink
show error message on error confirming payment received
Browse files Browse the repository at this point in the history
  • Loading branch information
woodser committed Jul 12, 2024
1 parent b0c73d1 commit 9747b20
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ private void confirmPaymentReceived() {
model.dataModel.onPaymentReceived(() -> {
}, 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(!confirmPaymentReceivedPermitted());
UserThread.execute(() -> statusLabel.setText("Error confirming payment received."));
});
Expand Down

0 comments on commit 9747b20

Please sign in to comment.