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 48b3ba8 commit b33cf10Copy full SHA for b33cf10
server.js
@@ -137,11 +137,11 @@ function serveTest(query, response)
137
{
138
if (kv[0] in params)
139
140
- params[kv[0]].push(querystring.unescape(kv[1]));
+ params[kv[0]].push(querystring.unescape(kv[1].replace(/\+/g, " ")));
141
}
142
else
143
144
- params[kv[0]] = [ querystring.unescape(kv[1]) ];
+ params[kv[0]] = [ querystring.unescape(kv[1].replace(/\+/g, " ")) ];
145
146
147
@@ -195,6 +195,10 @@ function serveTest(query, response)
195
196
str_options += 'n';
197
198
+ else if (option == "astral")
199
+ {
200
+ str_options += 'A';
201
+ }
202
203
204
retVal["warning"] = ('warning' in retVal ? retVal['warning'] : '') + "Invalid option '" + option + "'";
0 commit comments