Skip to content

Commit

Permalink
graph: Try to fix problems with unescaping values.
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Swärd committed Apr 18, 2023
1 parent c0be639 commit 7e6ff14
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions services/graph/pkg/service/v0/graph.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ type Graph struct {

// ServeHTTP implements the Service interface.
func (g Graph) ServeHTTP(w http.ResponseWriter, r *http.Request) {
r.URL.RawPath = r.URL.EscapedPath()
g.mux.ServeHTTP(w, r)
}

Expand Down

0 comments on commit 7e6ff14

Please sign in to comment.