Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Dispute agents sign summary #4517

Closed
Expand Up @@ -825,7 +825,7 @@ private void doClose(Button closeTicketButton) {
if (reason == DisputeResult.Reason.OPTION_TRADE &&
dispute.getChatMessages().size() > 1 &&
dispute.getChatMessages().get(1).isSystemMessage()) {
textToSign += "\n\n" + dispute.getChatMessages().get(1).getMessage();
textToSign += "\n" + dispute.getChatMessages().get(1).getMessage() + "\n";
}

String summaryText = DisputeSummaryVerification.signAndApply(disputeManager, disputeResult, textToSign);
Expand Down