aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/main.go b/main.go
index 342138e..77f1456 100644
--- a/main.go
+++ b/main.go
@@ -39,11 +39,13 @@ func main() {
}
authPage := func(message string) {
- _ = tmpl.Execute(writer, tparams{
+ err := tmpl.Execute(writer, tparams{
Identifier: base64.StdEncoding.EncodeToString(identifier),
Message: message,
Global: global,
})
+ if err != nil {
+ }
}
if request.ParseForm() != nil {