summaryrefslogtreecommitdiffstats
path: root/api/api.go
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-09-16 12:37:54 -0700
committer=Corey Hulen <corey@hulen.com>2015-09-16 12:37:54 -0700
commitc7bb4ab7f8cf39cf761694133d259120dfd7129a (patch)
tree96017ac046a5f86f5440d63e47a02fc17b1536df /api/api.go
parentac38aadc12b9665b612196d4293495d79e3f9d19 (diff)
downloadchat-c7bb4ab7f8cf39cf761694133d259120dfd7129a.tar.gz
chat-c7bb4ab7f8cf39cf761694133d259120dfd7129a.tar.bz2
chat-c7bb4ab7f8cf39cf761694133d259120dfd7129a.zip
Fixing broken email templates
Diffstat (limited to 'api/api.go')
-rw-r--r--api/api.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/api.go b/api/api.go
index 3fbb7d0df..a5e15b5b0 100644
--- a/api/api.go
+++ b/api/api.go
@@ -20,7 +20,7 @@ func NewServerTemplatePage(templateName string) *ServerTemplatePage {
return &ServerTemplatePage{
TemplateName: templateName,
- Props: props := make(map[string]string),
+ Props: make(map[string]string),
ClientProps: utils.ClientProperties,
}
}