aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/http.go
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2025-07-29 21:43:59 +0200
committerThomas Voss <mail@thomasvoss.com> 2025-07-29 21:43:59 +0200
commitc43c6d168053d9c9abb2999457b625e32ab1c7b2 (patch)
tree42e99f5118baea9e34f39b91440eb4898da0bc26 /src/http.go
parent38230599d68ae097e886222f5c2384fe6dd9b5bc (diff)
Run go fmt
Diffstat (limited to 'src/http.go')
-rw-r--r--src/http.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http.go b/src/http.go
index 362a2cd..db1316f 100644
--- a/src/http.go
+++ b/src/http.go
@@ -62,7 +62,7 @@ func chain(xs ...middleware) middleware {
func firstHandler(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
ctx := context.WithValue(r.Context(), "td", &templateData{
- Debugp: Debugp,
+ Debugp: Debugp,
Printers: i18n.Printers,
})
next.ServeHTTP(w, r.WithContext(ctx))