Skip to content
Snippets Groups Projects
Commit 42c38b8c authored by echicken's avatar echicken
Browse files

Better parsing of query string parameters.

parent 84916a9c
No related branches found
No related tags found
No related merge requests found
......@@ -78,7 +78,7 @@ var OAuth1_Client = function () {
function (e) {
e = e.split('=');
if (e.length < 2) return;
data[e][0] = data[e][1];
data[e[0]] = [e][1];
}
);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment