You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When encoding values, an error occurs. The value "@" is not encoded and just comes back with (MISSING). This was tested apart from fresh and it works correctly with go run
func test() {
v := url.Values{}
v.Set("email", "test@test.com")
log.Println(v.Encode())
}
Response using fresh: email=test%!t(MISSING)est.com
Intended Response: email=test%40test.com
The text was updated successfully, but these errors were encountered:
This is fixed in #96. In case that doesn't get merged, you can use my fork github.com/idubinskiy/fresh which has been updated to have the command point to the fixed package.
When encoding values, an error occurs. The value "@" is not encoded and just comes back with (MISSING). This was tested apart from fresh and it works correctly with go run
Response using fresh:
email=test%!t(MISSING)est.com
Intended Response:
email=test%40test.com
The text was updated successfully, but these errors were encountered: