Skip to content

Commit

Permalink
Merge pull request #8 from jgable/patch-1
Browse files Browse the repository at this point in the history
Fix missing exports in front of merge(...)
  • Loading branch information
unscene committed Jun 28, 2013
2 parents 26566c5 + 27561ab commit 4d1ab8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/oauth.js
Expand Up @@ -280,7 +280,7 @@ Token.prototype.encode = function(str) {
var ret = { oauth_token: this.oauth_token };

if(this.oauth_verifier) {
merge(ret, { oauth_verifier: this.oauth_verifier });
exports.merge(ret, { oauth_verifier: this.oauth_verifier });
}

return ret;
Expand Down

0 comments on commit 4d1ab8c

Please sign in to comment.