any idea why the ktor client would be messing with...
# ktor
k
any idea why the ktor client would be messing with a URL encoded param list? My request looks like this
Copy code
<https://torrent.ubuntu.com/announce?uploaded=0&downloaded=0&compact=1&info_hash=%65%14%5e%d4%d7%45%cf%c9%3f%5f%fe%34%92%e9%cd%e5%4b%55%7d%9f&peer_id=-CR0001-012345678901&port=6998&left=2082816000>
but when I inspect the request in ktor via
HttpClientCall#request#url
it shows this
Copy code
<https://torrent.ubuntu.com/announce?uploaded=0&downloaded=0&compact=1&info_hash=e%14%5E%EF%BF%BD%EF%BF%BDE%EF%BF%BD%EF%BF%BD%3F_%EF%BF%BD4%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BDKU%7D%EF%BF%BD&peer_id=-CR0001-012345678901&port=6998&left=2082816000>
e
Hi @kevin.cianfarini, could you show how you set up the request parameters?
k