Skip to content

Commit

Permalink
Fix threading (#585)
Browse files Browse the repository at this point in the history
  • Loading branch information
timja authored Jun 17, 2019
1 parent 9314162 commit 79b36bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public boolean publish(String message, JSONArray attachments, String color) {
post.setHeader("Authorization", "Bearer " + populatedToken);
post.setHeader("Content-type", "application/json");
if (threadTs.length() > 1) {
json.put("thread_ts", "threadTs");
json.put("thread_ts", threadTs);
}
if (replyBroadcast) {
json.put("reply_broadcast", "true");
Expand Down

0 comments on commit 79b36bc

Please sign in to comment.