From 74e33b0a51f6d8b5cebd355ac3dd0e825e2c83a7 Mon Sep 17 00:00:00 2001 From: Wim Date: Sat, 27 Oct 2018 13:20:40 +0200 Subject: Update channels when a new group is created (mattermost) --- matterclient/matterclient.go | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'matterclient') diff --git a/matterclient/matterclient.go b/matterclient/matterclient.go index 6ea99507..86eb1bea 100644 --- a/matterclient/matterclient.go +++ b/matterclient/matterclient.go @@ -334,6 +334,8 @@ func (m *MMClient) parseMessage(rmsg *Message) { if _, ok := user["id"].(string); ok { m.UpdateUser(user["id"].(string)) } + case "group_added": + m.UpdateChannels() /* case model.ACTION_USER_REMOVED: m.handleWsActionUserRemoved(&rmsg) @@ -431,6 +433,10 @@ func (m *MMClient) GetChannelName(channelId string) string { if t.Channels != nil { for _, channel := range t.Channels { if channel.Id == channelId { + if channel.Type == model.CHANNEL_GROUP { + res := strings.Replace(channel.DisplayName, ",", "_", -1) + return strings.Replace(res, " ", "", -1) + } return channel.Name } } @@ -438,6 +444,10 @@ func (m *MMClient) GetChannelName(channelId string) string { if t.MoreChannels != nil { for _, channel := range t.MoreChannels { if channel.Id == channelId { + if channel.Type == model.CHANNEL_GROUP { + res := strings.Replace(channel.DisplayName, ",", "_", -1) + return strings.Replace(res, " ", "", -1) + } return channel.Name } } -- cgit v1.2.3