Vladislav Lagunov

Results 6 issues of Vladislav Lagunov

closes #1584 I was investigating a bug in our application and it turned out it was caused by servant-client not escaping plus signs in query params. After some digging down...

Here https://github.com/aristidb/http-types/blob/master/Network/HTTP/Types/URI.hs#L253 documentation states `Performs percent encoding on all unreserved characters, as well as @\:\@\=\+\$@,` while under the hood it calls `urlEncodeBuilder False` which does not escape characters `:@&=+$,`. Also...