Commit 1e1cc0b

Eric Bower  ·  2026-04-19 12:27:15 -0400 EDT
parent 47f9490
fix(pgs): use URL.Path so we ignore query params
1 files changed,  +1, -1
+1, -1
......@@ -73,7 +73,7 @@ func (c *HttpCache) ServeHTTP(w http.ResponseWriter, r *http.Request) {
7373 return
7474 }
7575
76- reqUri := r.URL.RequestURI()
76+ reqUri := r.URL.Path
7777 for _, uri := range c.IgnoreRoutes {
7878 if uri == reqUri {
7979 c.Upstream.ServeHTTP(w, r)