summaryrefslogtreecommitdiffstats
path: root/store
diff options
context:
space:
mode:
Diffstat (limited to 'store')
-rw-r--r--store/sql_channel_store.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/store/sql_channel_store.go b/store/sql_channel_store.go
index 2cbec705b..728f44bc9 100644
--- a/store/sql_channel_store.go
+++ b/store/sql_channel_store.go
@@ -592,7 +592,7 @@ func (s SqlChannelStore) GetExtraMembers(channelId string, limit int) StoreChann
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 {
- members[i].Sanitize(utils.SanitizeOptions)
+ members[i].Sanitize(utils.Cfg.GetSanitizeOptions())
}
result.Data = members
}