From a9d8ac8bc0c745d43440aa56f1b602edf8e4aef7 Mon Sep 17 00:00:00 2001 From: Qais Patankar Date: Thu, 31 Dec 2020 18:01:57 +0000 Subject: Refactor "msg-parent-not-found" to config.ParentIDNotFound (#1347) --- bridge/msteams/msteams.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'bridge/msteams') diff --git a/bridge/msteams/msteams.go b/bridge/msteams/msteams.go index 4d4acc2a..87a15a7a 100644 --- a/bridge/msteams/msteams.go +++ b/bridge/msteams/msteams.go @@ -86,13 +86,16 @@ func (b *Bmsteams) JoinChannel(channel config.ChannelInfo) error { func (b *Bmsteams) Send(msg config.Message) (string, error) { b.Log.Debugf("=> Receiving %#v", msg) - if msg.ParentID != "" && msg.ParentID != "msg-parent-not-found" { + if msg.ParentValid() { return b.sendReply(msg) } - if msg.ParentID == "msg-parent-not-found" { + + // Handle prefix hint for unthreaded messages. + if msg.ParentNotFound() { msg.ParentID = "" msg.Text = fmt.Sprintf("[thread]: %s", msg.Text) } + ct := b.gc.Teams().ID(b.GetString("TeamID")).Channels().ID(msg.Channel).Messages().Request() text := msg.Username + msg.Text content := &msgraph.ItemBody{Content: &text} -- cgit v1.2.3