From c43c6d168053d9c9abb2999457b625e32ab1c7b2 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Tue, 29 Jul 2025 21:43:59 +0200 Subject: Run go fmt --- src/http.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/http.go') 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)) -- cgit v1.2.3