summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2018-02-06 18:45:14 -0500
committerDerrick Anderson <derrick@andersonwebstudio.com>2018-02-06 18:45:14 -0500
commit9a73f9988588b6b1be5711634239381fe9e01d16 (patch)
tree1e4f71f469608d02d73afc40b3d838fe97d269ae /utils
parent1ec295f88ca99e9423ffd91019cecf802ae3dc77 (diff)
downloadchat-9a73f9988588b6b1be5711634239381fe9e01d16.tar.gz
chat-9a73f9988588b6b1be5711634239381fe9e01d16.tar.bz2
chat-9a73f9988588b6b1be5711634239381fe9e01d16.zip
ICU-715 Change ExperimentalGroupUnreadChannels setting to allow for default on/off (#8211)
Diffstat (limited to 'utils')
-rw-r--r--utils/config.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/config.go b/utils/config.go
index b93d673a3..9e962eef4 100644
--- a/utils/config.go
+++ b/utils/config.go
@@ -397,7 +397,7 @@ func GenerateClientConfig(c *model.Config, diagnosticId string) map[string]strin
props["EnablePreviewFeatures"] = strconv.FormatBool(*c.ServiceSettings.EnablePreviewFeatures)
props["EnableTutorial"] = strconv.FormatBool(*c.ServiceSettings.EnableTutorial)
props["ExperimentalEnableDefaultChannelLeaveJoinMessages"] = strconv.FormatBool(*c.ServiceSettings.ExperimentalEnableDefaultChannelLeaveJoinMessages)
- props["ExperimentalGroupUnreadChannels"] = strconv.FormatBool(*c.ServiceSettings.ExperimentalGroupUnreadChannels)
+ props["ExperimentalGroupUnreadChannels"] = *c.ServiceSettings.ExperimentalGroupUnreadChannels
props["SendEmailNotifications"] = strconv.FormatBool(c.EmailSettings.SendEmailNotifications)
props["SendPushNotifications"] = strconv.FormatBool(*c.EmailSettings.SendPushNotifications)