Improvments to typing messages (#5230)

Этот коммит содержится в:
Christopher Speller
2017-01-30 15:43:34 -05:00
коммит произвёл GitHub
родитель b26329cdda
Коммит 450c0b3ccb
7 изменённых файлов: 70 добавлений и 43 удалений

Просмотреть файл

@@ -311,6 +311,10 @@ func getClientConfig(c *model.Config) map[string]string {
props["EnableWebrtc"] = strconv.FormatBool(*c.WebrtcSettings.Enable)
props["MaxNotificationsPerChannel"] = strconv.FormatInt(*c.TeamSettings.MaxNotificationsPerChannel, 10)
props["TimeBetweenUserTypingUpdatesMilliseconds"] = strconv.FormatInt(*c.ServiceSettings.TimeBetweenUserTypingUpdatesMilliseconds, 10)
props["EnableUserTypingMessages"] = strconv.FormatBool(*c.ServiceSettings.EnableUserTypingMessages)
if IsLicensed {
if *License.Features.CustomBrand {
props["EnableCustomBrand"] = strconv.FormatBool(*c.TeamSettings.EnableCustomBrand)