gravityblast / fresh

Build and (re)start go web apps after saving/creating/deleting source files.
MIT License
3.78k stars 381 forks source link

"(MISSING)" when encoding values #93

Open drewdgilmore opened 6 years ago

drewdgilmore commented 6 years ago

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

renanmpimentel commented 6 years ago

:+1:

perelin commented 5 years ago

Same issues here. Any solution in sight?

idubinskiy commented 5 years ago

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.