Skip to content

Commit

Permalink
Merge branch 'tw-no-profile-json'
Browse files Browse the repository at this point in the history
  • Loading branch information
smurthas committed Mar 16, 2012
2 parents 8f97204 + 5c9145f commit d73ef39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Connectors/Twitter/lib.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ exports.init = function(theAuth, theBase, srcdir) {
exports.getMe = function(arg, cbEach, cbDone) {
if(auth.profile && auth.profile.screen_name) {
cbEach(auth.profile);
return cbDone();
return process.nextTick(cbDone);
}
arg.path = '/account/verify_credentials.json';
return getOne(arg,function(err,me){
Expand Down

0 comments on commit d73ef39

Please sign in to comment.