diff options
Diffstat (limited to 'middleware')
-rw-r--r-- | middleware/i18n.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/middleware/i18n.go b/middleware/i18n.go index 0ed07d4..db90270 100644 --- a/middleware/i18n.go +++ b/middleware/i18n.go @@ -34,7 +34,7 @@ func I18n(next http.Handler) http.Handler { Name: "redirect", Value: r.URL.Path, }) - templates.Root(nil, templates.SetLanguage()).Render(ctx, w) + templates.Root(nil, templates.Language()).Render(ctx, w) } else { next.ServeHTTP(w, r.WithContext(ctx)) } |