mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
Merge branch 'master' into PLT-92
This commit is contained in:
@@ -439,7 +439,7 @@ func (s SqlChannelStore) GetExtraMembers(channelId string, limit int) StoreChann
|
||||
if err != nil {
|
||||
result.Err = model.NewAppError("SqlChannelStore.GetExtraMembers", "We couldn't get the extra info for channel members", "channel_id="+channelId+", "+err.Error())
|
||||
} else {
|
||||
for i, _ := range members {
|
||||
for i := range members {
|
||||
members[i].Sanitize(utils.SanitizeOptions)
|
||||
}
|
||||
result.Data = members
|
||||
|
||||
Reference in New Issue
Block a user