diff options
author | Wim <wim@42.be> | 2019-04-19 23:31:45 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2019-04-19 23:31:45 +0200 |
commit | fed77cccf3ca8104c60ffedbff130a1e520abfb7 (patch) | |
tree | df2e09f5319109d2ea8b18291b3fe8370f52fd73 | |
parent | 9b520dfb782c65ff0ab95712eaee4e7487e9729b (diff) | |
download | matterbridge-msglm-fed77cccf3ca8104c60ffedbff130a1e520abfb7.tar.gz matterbridge-msglm-fed77cccf3ca8104c60ffedbff130a1e520abfb7.tar.bz2 matterbridge-msglm-fed77cccf3ca8104c60ffedbff130a1e520abfb7.zip |
Handle unthreaded messages (mattermost). Fixes #803
-rw-r--r-- | bridge/mattermost/mattermost.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bridge/mattermost/mattermost.go b/bridge/mattermost/mattermost.go index ce4f4c33..e41b19d7 100644 --- a/bridge/mattermost/mattermost.go +++ b/bridge/mattermost/mattermost.go @@ -121,6 +121,12 @@ func (b *Bmattermost) Send(msg config.Message) (string, error) { return msg.ID, b.mc.DeleteMessage(msg.ID) } + // Handle prefix hint for unthreaded messages. + if msg.ParentID == "msg-parent-not-found" { + msg.ParentID = "" + msg.Text = fmt.Sprintf("[thread]: %s", msg.Text) + } + // Upload a file if it exists if msg.Extra != nil { for _, rmsg := range helper.HandleExtra(&msg, b.General) { |