diff options
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] != "" { |