diff options
author | =Corey Hulen <corey@hulen.com> | 2015-11-23 12:15:50 -0800 |
---|---|---|
committer | =Corey Hulen <corey@hulen.com> | 2015-11-23 12:15:50 -0800 |
commit | cf2048c1ec4616ba0d7a619da53bdc63d8daeae4 (patch) | |
tree | 2e666a5b9200e0cd057af663a3de2e19aff2b51f /model | |
parent | ba0cbe723be7adcfa7b5a43e50b3932f8c7a929f (diff) | |
download | chat-cf2048c1ec4616ba0d7a619da53bdc63d8daeae4.tar.gz chat-cf2048c1ec4616ba0d7a619da53bdc63d8daeae4.tar.bz2 chat-cf2048c1ec4616ba0d7a619da53bdc63d8daeae4.zip |
fixing typo
Diffstat (limited to 'model')
-rw-r--r-- | model/user.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/model/user.go b/model/user.go index 694bafae9..cd65206fb 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"] = "all" + u.NotifyProps["all"] = "false" u.NotifyProps["channel"] = "true" splitName := strings.Split(u.Nickname, " ") if len(splitName) > 0 && splitName[0] != "" { |