Skip to content

Commit f075cf3

Browse files
committed
Remove url escape
1 parent defa30c commit f075cf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/http.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ func (wbrc *Archiver) fetch(s string, ch chan<- string) {
9090
data := url.Values{
9191
"submitid": {wbrc.submitid},
9292
"anyway": {anyway},
93-
"url": {url.QueryEscape(s)},
93+
"url": {s},
9494
}
9595
uri := baseuri.String()
9696
req, err := http.NewRequest("POST", baseuri.String()+"/submit/", strings.NewReader(data.Encode()))

0 commit comments

Comments
 (0)