Skip to content

Commit

Permalink
fixed get arguments for getRetweets and blockExists
Browse files Browse the repository at this point in the history
  • Loading branch information
Junho Kyung authored and AvianFlu committed Jul 3, 2012
1 parent ea942e5 commit c29c8e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/twitter.js
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ Twitter.prototype.retweetStatus = function(id, callback) {

Twitter.prototype.getRetweets = function(id, params, callback) {
var url = '/statuses/retweets/' + escape(id) + '.json';
this.get(url, params, null, callback);
this.get(url, params, callback);
return this;
}

Expand Down Expand Up @@ -1096,7 +1096,7 @@ Twitter.prototype.blockExists = function(id, callback) {
else
params.user_id = id;

this.get(url, params, null, callback);
this.get(url, params, callback);
return this;
}
Twitter.prototype.isBlocked
Expand Down

0 comments on commit c29c8e9

Please sign in to comment.