Skip to content

Commit

Permalink
Fixing post /alert/text command seralization
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Apr 6, 2017
1 parent 267d176 commit b94c285
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ public W3CHttpCommandCodec() {

case SET_ALERT_VALUE:
return ImmutableMap.<String, Object>builder()
.put("text", stringToUtf8Array((String) parameters.get("text")))
.put("text", parameters.get("text"))
.put("value", stringToUtf8Array((String) parameters.get("text")))
.build();

Expand Down

0 comments on commit b94c285

Please sign in to comment.