Skip to content

Commit

Permalink
replace & with &, see golang.org/issue/25192
Browse files Browse the repository at this point in the history
  • Loading branch information
vkuznet committed May 5, 2022
1 parent e576ef5 commit 22aaaed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 22aaaed

Please sign in to comment.