We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2333b8 commit 2a4f417Copy full SHA for 2a4f417
app.js
@@ -142,11 +142,11 @@ function serveTest(query, response)
142
{
143
if (kv[0] in params)
144
145
- params[kv[0]].push(querystring.unescape(kv[1]));
+ params[kv[0]].push(querystring.unescape(kv[1].replace(/\+/g, " ")));
146
}
147
else
148
149
- params[kv[0]] = [ querystring.unescape(kv[1]) ];
+ params[kv[0]] = [ querystring.unescape(kv[1].replace(/\+/g, " ")) ];
150
151
152
0 commit comments