do you guys face issues when using ktor multipart ...
# ktor
v
do you guys face issues when using ktor multipart form that you have to escape qoutes in keys in form data ? like
Copy code
MultiPartFormDataContent(
            formData {
                append("\"key\"", file.readBytes(), Headers.build {
                    append(HttpHeaders.ContentType, "image/*")
                    append(HttpHeaders.ContentDisposition, "filename=\"${file.name}\"")
                })
            }
        )
a
It's not required by the standard, but some servers reject the unquoted field names.