Rename error field in json receive response to exception

This commit is contained in:
AsamK 2022-02-04 15:47:06 +01:00
parent 3f582e9c2e
commit 7261129609

View file

@ -25,7 +25,7 @@ public class JsonReceiveMessageHandler implements Manager.ReceiveMessageHandler
final var object = new HashMap<String, Object>();
object.put("account", m.getSelfNumber());
if (exception != null) {
object.put("error", JsonError.from(exception));
object.put("exception", JsonError.from(exception));
}
if (envelope != null) {