pQuotedString will fail if the value contains any control characters. This causes valid, quoted UTF-8 parameters in multipart/form-data headers to be parsed as unquoted ie. double quotes are interpreted as part of the value so you get "ąę" insted of ąę in filenames etc. This is an attempted fix.
pQuotedString
will fail if the value contains any control characters. This causes valid, quoted UTF-8 parameters in multipart/form-data headers to be parsed as unquoted ie. double quotes are interpreted as part of the value so you get"ąę"
insted ofąę
in filenames etc. This is an attempted fix.See https://github.com/snapframework/snap-core/issues/150 for discussion.