summaryrefslogtreecommitdiffstats
path: root/model/user.go
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-11-23 12:14:50 -0800
committer=Corey Hulen <corey@hulen.com>2015-11-23 12:14:50 -0800
commitba0cbe723be7adcfa7b5a43e50b3932f8c7a929f (patch)
tree5b641b0746daead7852ae9a0daf373f4a623efff /model/user.go
parent6ab7df3335d414ecf864972c817e3b37b3b01abf (diff)
downloadchat-ba0cbe723be7adcfa7b5a43e50b3932f8c7a929f.tar.gz
chat-ba0cbe723be7adcfa7b5a43e50b3932f8c7a929f.tar.bz2
chat-ba0cbe723be7adcfa7b5a43e50b3932f8c7a929f.zip
Disabling the all mention
Diffstat (limited to 'model/user.go')
-rw-r--r--model/user.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/model/user.go b/model/user.go
index 77dc04a03..694bafae9 100644
--- a/model/user.go
+++ b/model/user.go
@@ -177,7 +177,7 @@ func (u *User) SetDefaultNotifications() {
u.NotifyProps["desktop_sound"] = "true"
u.NotifyProps["mention_keys"] = u.Username + ",@" + u.Username
u.NotifyProps["first_name"] = "false"
- u.NotifyProps["all"] = "true"
+ u.NotifyProps["all"] = "all"
u.NotifyProps["channel"] = "true"
splitName := strings.Split(u.Nickname, " ")
if len(splitName) > 0 && splitName[0] != "" {