Hi, we're using WINK with our Web application and we encountered the following issue: if the URL contains + character as part of a parameter value, it does not get decoded correctly to space, but is rather left as is, for example:
...?query=a+b will be decoded to: a+b instead of a b If %20 is used instead of + everything works fine, but our client framework generates + for query params automatically, so I cannot override it. Is it a known issue? Thanks.
