Skip to content
This repository has been archived by the owner on Dec 21, 2019. It is now read-only.

Commit

Permalink
consistency fix
Browse files Browse the repository at this point in the history
  • Loading branch information
superwhiskers committed Mar 17, 2018
1 parent b25c670 commit 30b8742
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func formatRequest(r *http.Request) string {
request = append(request, url)

// add the host
request = append(request, fmt.Sprintf("Host: %v", r.Host))
request = append(request, fmt.Sprintf("host: %v", r.Host))

// loop through headers
for name, headers := range r.Header {
Expand Down

0 comments on commit 30b8742

Please sign in to comment.