Skip to content

Commit

Permalink
gwt: Fix displaying of malformed response in service error.
Browse files Browse the repository at this point in the history
  • Loading branch information
calin-iorgulescu committed Feb 10, 2015
1 parent 8c07e82 commit 340362a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void parseError(String text) {
/* unexpected format */
eventBus.fireEvent(new ErrorDisplayEvent(constants.serviceError() + " " + constants.unknownFormat(),
"<b>" + constants.serviceErrorUrl() + "</b>: " + URL + "<br/>" +
"<b>" + constants.serviceErrorContent() + "</b>:<br/>"));
"<b>" + constants.serviceErrorContent() + "</b>:<br/>" + text));
}
}

Expand Down

0 comments on commit 340362a

Please sign in to comment.