Skip to content
This repository has been archived by the owner on Sep 13, 2019. It is now read-only.

Commit

Permalink
Fixed jscs warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jkleinsc committed Sep 8, 2016
1 parent 1649a51 commit fe486e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routes/30-auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ module.exports = function(app, config) {
return;
}
if (validateOAuth(body.oauth)) {
return callback(null, denormalizeOAuth(body));
callback(null, denormalizeOAuth(body));
} else {
createOAuthTokens(accessToken, body, callback);
}
Expand Down

0 comments on commit fe486e8

Please sign in to comment.