From ab3dc1160db63a961e4e8d822433bae943b5784e Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Mon, 22 Jul 2024 07:30:25 +0200 Subject: fix stats logging --- templates/page.templ | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/page.templ b/templates/page.templ index fb91b23..980f827 100644 --- a/templates/page.templ +++ b/templates/page.templ @@ -4,6 +4,7 @@ import ( "io/fs" "go.alanpearce.eu/website/internal/config" + "net/url" ) var ( @@ -87,7 +88,7 @@ templ Page(site *config.Config, page PageSettings) { } func mkURL(u config.URL, path string, title string) string { - q := u.Query() + q := url.Values{} q.Add("p", path) q.Add("t", title) u.RawQuery = q.Encode() -- cgit 1.4.1