summaryrefslogtreecommitdiffstats
path: root/model/user.go
diff options
context:
space:
mode:
authorChris Duarte <csduarte@users.noreply.github.com>2018-03-29 20:50:24 -0700
committerJoram Wilander <jwawilander@gmail.com>2018-03-29 23:50:24 -0400
commit80b3d14b56d685618c745fb6614bda93f59c18e5 (patch)
tree208e1a3652bc37f6800360c69bfd904cf8931195 /model/user.go
parent59606791a7b18b0a80626d5ec7f05b90b51c779d (diff)
downloadchat-80b3d14b56d685618c745fb6614bda93f59c18e5.tar.gz
chat-80b3d14b56d685618c745fb6614bda93f59c18e5.tar.bz2
chat-80b3d14b56d685618c745fb6614bda93f59c18e5.zip
Initialize timezone to a default state (#8560)
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 066ea5fd2..efe8f8db9 100644
--- a/model/user.go
+++ b/model/user.go
@@ -211,7 +211,7 @@ func (u *User) PreSave() {
}
if u.Timezone == nil {
- u.Timezone = make(map[string]string)
+ u.Timezone = DefaultUserTimezone()
}
if len(u.Password) > 0 {