Skip to content
Snippets Groups Projects
Commit 5f2b2bf5 authored by echicken's avatar echicken
Browse files

Fixed bug in building param string for GET requests.

parent 82c63387
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]] = [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