diff --git a/matterclient/matterclient.go b/matterclient/matterclient.go index f3e188a0..0ee8fff1 100644 --- a/matterclient/matterclient.go +++ b/matterclient/matterclient.go @@ -523,6 +523,7 @@ func (m *MMClient) GetTeamFromChannel(channelId string) string { var channels []*model.Channel for _, t := range m.OtherTeams { channels = append(channels, t.Channels.Channels...) + channels = append(channels, t.MoreChannels.Channels...) for _, c := range channels { if c.Id == channelId { return t.Id