Andrew O'Hara
09/09/2021, 9:27 PM+ instead of %20, which is rejected on the device.
val request = Request(Method.GET, "/").query("times", "1337 9001")
println(request.toMessage())
results in
GET /?times=1337+9001 HTTP/1.1
Can we replace the + with a %20 ? And is there some sort of workaround I can use?