Fix default template location in install

This commit is contained in:
Kailash Nadh 2019-07-04 14:33:03 +05:30
parent 348e65f1ec
commit 1ca8c2faf2
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ func install(app *App, qMap goyesql.Queries) {
}
// Default template.
tplBody, err := ioutil.ReadFile("templates/default.tpl")
tplBody, err := ioutil.ReadFile("email-templates/default.tpl")
if err != nil {
tplBody = []byte(tplTag)
}