From 22aaaedc1ed4e68f948ba1dbb2cb266820cc2156 Mon Sep 17 00:00:00 2001 From: Valentin Kuznetsov Date: Thu, 5 May 2022 13:54:35 -0400 Subject: [PATCH] replace & with &, see golang.org/issue/25192 --- web/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/utils.go b/web/utils.go index 71589e2..ae796e5 100644 --- a/web/utils.go +++ b/web/utils.go @@ -235,7 +235,7 @@ func makeUrl(url, urlType string, startIdx, limit, nres int) string { } idx = j } - out = fmt.Sprintf("%s&idx=%d&&limit=%d", url, idx, limit) + out = fmt.Sprintf("%s&idx=%d&limit=%d", url, idx, limit) return out }