close template files

This commit is contained in:
Antoni Sawicki 2022-12-07 23:50:58 -08:00
parent e983f244f8
commit 04a755749e
1 changed files with 5 additions and 2 deletions

7
wrp.go
View File

@ -469,11 +469,13 @@ func tmpl(t string) string {
if err != nil {
goto builtin
}
defer fh.Close()
tmpl, err = ioutil.ReadAll(fh)
if err != nil {
goto builtin
}
log.Printf("Got UI template from %v file\n", t)
log.Printf("Got HTML UI template from %v file, size %v \n", t, len(tmpl))
return string(tmpl)
builtin:
@ -481,12 +483,13 @@ builtin:
if err != nil {
log.Fatal(err)
}
defer fhs.Close()
tmpl, err = ioutil.ReadAll(fhs)
if err != nil {
log.Fatal(err)
}
log.Printf("Got UI template from built-in\n")
log.Printf("Got HTML UI template from embed\n")
return string(tmpl)
}