Skip to content

Commit

Permalink
Merge pull request #81 from yunify/fix-post-url-escape
Browse files Browse the repository at this point in the history
POST requset do not need query escape
  • Loading branch information
runzexia authored Dec 22, 2017
2 parents f931c13 + b2f3071 commit cc076fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion request/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ func (b *Builder) parseRequestForm() error {
(*b.parsedParams)["zone"] = zone
}
for key, value := range *b.parsedParams {
values.Set(key, url.QueryEscape(value))
values.Set(key, value)
}
b.parsedForm = values
}
Expand Down

0 comments on commit cc076fe

Please sign in to comment.