From cce7624ab8e8e2b91e9854516715a0ddc22dca6a Mon Sep 17 00:00:00 2001 From: Wim Date: Thu, 22 Feb 2018 23:36:22 +0100 Subject: [PATCH] Update userlist on join (slack). Closes #372 --- bridge/slack/slack.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bridge/slack/slack.go b/bridge/slack/slack.go index 80886446..b7c80bf4 100644 --- a/bridge/slack/slack.go +++ b/bridge/slack/slack.go @@ -7,8 +7,8 @@ import ( "github.com/42wim/matterbridge/bridge/config" "github.com/42wim/matterbridge/bridge/helper" "github.com/42wim/matterbridge/matterhook" - log "github.com/sirupsen/logrus" "github.com/nlopes/slack" + log "github.com/sirupsen/logrus" "html" "io" "net/http" @@ -342,6 +342,10 @@ func (b *Bslack) handleSlackClient(mchan chan *MMMessage) { } switch ev := msg.Data.(type) { case *slack.MessageEvent: + // update the userlist on a channel_join + if message.Raw.SubType == "channel_join" { + b.Users, _ = b.sc.GetUsers() + } if ev.SubType == "pinned_item" || ev.SubType == "unpinned_item" { continue }