summaryrefslogtreecommitdiffstats
path: root/bridge/slack/slack.go
diff options
context:
space:
mode:
Diffstat (limited to 'bridge/slack/slack.go')
-rw-r--r--bridge/slack/slack.go6
1 files changed, 5 insertions, 1 deletions
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
}