Skip to content

Commit

Permalink
change payload pusher
Browse files Browse the repository at this point in the history
  • Loading branch information
evnpr committed Sep 11, 2016
1 parent 00292ef commit a5e7bb5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ public static QiscusComment jsonToComment(JsonObject jsonObject) {
qiscusComment.setRoomId(jsonObject.get("room_id").getAsInt());
qiscusComment.setUniqueId(jsonObject.get("unique_temp_id").getAsString());
qiscusComment.setCommentBeforeId(jsonObject.get("comment_before_id").getAsInt());
qiscusComment.setMessage(jsonObject.get("comment").getAsString());
qiscusComment.setMessage(jsonObject.get("message").getAsString());
qiscusComment.setSender(jsonObject.get("username").isJsonNull() ? null : jsonObject.get("username").getAsString());
qiscusComment.setSenderEmail(jsonObject.get("email").getAsString());
qiscusComment.setTime(QiscusDateUtil.parseIsoFormat(jsonObject.get("created_at").getAsString()));
Expand Down

0 comments on commit a5e7bb5

Please sign in to comment.