Is there a way to configure the HttpBuilder so tha...
# ktor
t
Is there a way to configure the HttpBuilder so that it won't encode the path? Android doesn't encode, but iOS does. "/v3/subscribers%3Bview=subuser_overview" vs"/v3/subscribers;view=subuser_overview" The difference causes my app to get a 404 vs the proper response.
a
The
URLBuilder
doesn’t encode semicolon in URL path. Could you please tell me do you have a control over the server?
Nevermind. I’ve found the issue in YouTrack.