Skip to content

Commit

Permalink
Remove url escape
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow committed Mar 5, 2021
1 parent defa30c commit f075cf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/http.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func (wbrc *Archiver) fetch(s string, ch chan<- string) {
data := url.Values{
"submitid": {wbrc.submitid},
"anyway": {anyway},
"url": {url.QueryEscape(s)},
"url": {s},
}
uri := baseuri.String()
req, err := http.NewRequest("POST", baseuri.String()+"/submit/", strings.NewReader(data.Encode()))
Expand Down

0 comments on commit f075cf3

Please sign in to comment.