Skip to content

Commit

Permalink
[DDO-3290] Stop escaping text sent to Slack's API (#350)
Browse files Browse the repository at this point in the history
  • Loading branch information
jack-r-warren authored Nov 3, 2023
1 parent 8ce72b8 commit a50dc51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sherlock/internal/slack/send_message.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func SendMessageReturnError(ctx context.Context, channel string, text string, at
if isEnabled() && (text != "" || len(attachments) > 0) {
var options []slack.MsgOption
if text != "" {
options = append(options, slack.MsgOptionText(text, true))
options = append(options, slack.MsgOptionText(text, false))
}
if len(attachments) > 0 {
options = append(options, slack.MsgOptionAttachments(
Expand Down

0 comments on commit a50dc51

Please sign in to comment.