Skip to content

Commit

Permalink
formatting cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
precision committed Jul 31, 2011
1 parent 9d399d8 commit 69320ed
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -226,12 +226,12 @@ function oauthSuccess(req, res, next) {
};

var oa = new OAuth(apiConfig.oauth.requestURL,
apiConfig.oauth.accessURL,
apiKey,
apiSecret,
apiConfig.oauth.version,
null,
apiConfig.oauth.crypt);
apiConfig.oauth.accessURL,
apiKey,
apiSecret,
apiConfig.oauth.version,
null,
apiConfig.oauth.crypt);

if (config.debug) {
console.log(util.inspect(oa));
Expand Down Expand Up @@ -374,12 +374,12 @@ function processRequest(req, res, next) {

var body,
oa = new OAuth(null,
null,
apiKey || null,
apiSecret || null,
apiConfig.oauth.version || null,
null,
apiConfig.oauth.crypt);
null,
apiKey || null,
apiSecret || null,
apiConfig.oauth.version || null,
null,
apiConfig.oauth.crypt);

var resource = options.protocol + '://' + options.host + options.path,
cb = function(error, data, response) {
Expand Down

0 comments on commit 69320ed

Please sign in to comment.