diff options
Diffstat (limited to 'bridge/slack/slack.go')
-rw-r--r-- | bridge/slack/slack.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridge/slack/slack.go b/bridge/slack/slack.go index 384581ef..e016a64f 100644 --- a/bridge/slack/slack.go +++ b/bridge/slack/slack.go @@ -299,7 +299,7 @@ func (b *Bslack) sendRTM(msg config.Message) (string, error) { } // Handle prefix hint for unthreaded messages. - if msg.ParentID == "msg-parent-not-found" { + if msg.ParentNotFound() { msg.ParentID = "" msg.Text = fmt.Sprintf("[thread]: %s", msg.Text) } |