From fe486e8b5af40e66e545c4562690534bd11382e1 Mon Sep 17 00:00:00 2001 From: John Kleinschmidt Date: Thu, 8 Sep 2016 09:25:19 -0400 Subject: [PATCH] Fixed jscs warning --- routes/30-auth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/30-auth.js b/routes/30-auth.js index 58b9bdc..31fdefc 100644 --- a/routes/30-auth.js +++ b/routes/30-auth.js @@ -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); }