Comparing version 0.0.40 to 0.0.41
@@ -51,3 +51,9 @@ /** | ||
if (query) { | ||
path = config.path + '?' + query; | ||
// didn't handle # situation since backend should not get a hash tag | ||
if (config.path.indexOf('?') === -1) { | ||
path = config.path + '?' + query; | ||
} | ||
else { | ||
path = config.path + '&' + query; | ||
} | ||
} | ||
@@ -54,0 +60,0 @@ else { |
{ | ||
"name": "node-ral", | ||
"version": "0.0.40", | ||
"version": "0.0.41", | ||
"description": "a rpc client for node", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
283035
7957