Skip to content

Commit

Permalink
Merge pull request #75 from rneatherway/fix-thread-get
Browse files Browse the repository at this point in the history
conversations.replies should be a POST
  • Loading branch information
rneatherway authored Dec 11, 2024
2 parents 66154ef + a9add99 commit 2b0a01e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/slackclient/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ func (c *SlackClient) History(channelID string, startTimestamp string, thread st
params["oldest"] = startTimestamp
}

body, err := c.get("conversations.replies", params)
body, err := c.API("POST", "conversations.replies", params, nil)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 2b0a01e

Please sign in to comment.