Merge: nitcorn: decode GET args from percent encoding
authorJean Privat <jean@pryen.org>
Mon, 24 Oct 2016 13:35:07 +0000 (09:35 -0400)
committerJean Privat <jean@pryen.org>
Mon, 24 Oct 2016 13:35:07 +0000 (09:35 -0400)
commita4fbb83ee103e501ceaa6222db30a45a5f117fd6
tree0efef2a0b34f8095064667bd782057643a9f6099
parent1ff0b7e77e317ccc91e1b6f80aff7dc7aecebe62
parent733f57506ad58b0d5e5499815c6da98adfa41d96
Merge: nitcorn: decode GET args from percent encoding

While POST data was decoded from percent encoding, GET args were not. Some clients (`shibuqam`) manually decoded that args while others (`benitlux`) hung on requests with spaces.

There is still an issue in the HTTP request parsing where request URL with a space are broken. I'm not fixing this right away because there is no current issue associated to this problem and I have a larger rewrite of nitcorn in the works that will solve this.

Pull-Request: #2322