From 4f0a33eea7e61628b04524440f80bb92864b8490 Mon Sep 17 00:00:00 2001 From: Nick Misasi Date: Tue, 25 Aug 2020 14:10:05 -0400 Subject: [PATCH] Change ExperimentalCloudUserLimit config to be base 10 (#15342) --- config/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/client.go b/config/client.go index c4f93c6074..a7cc70bcfc 100644 --- a/config/client.go +++ b/config/client.go @@ -52,7 +52,7 @@ func GenerateClientConfig(c *model.Config, diagnosticID string, license *model.L props["ExperimentalEnablePostMetadata"] = "true" props["ExperimentalEnableClickToReply"] = strconv.FormatBool(*c.ExperimentalSettings.EnableClickToReply) - props["ExperimentalCloudUserLimit"] = strconv.FormatInt(*c.ExperimentalSettings.CloudUserLimit, 8) + props["ExperimentalCloudUserLimit"] = strconv.FormatInt(*c.ExperimentalSettings.CloudUserLimit, 10) if *c.ServiceSettings.ExperimentalChannelOrganization || *c.ServiceSettings.ExperimentalGroupUnreadChannels != model.GROUP_UNREAD_CHANNELS_DISABLED { props["ExperimentalChannelOrganization"] = strconv.FormatBool(true) } else {