diff --git a/lib/grant-types/refresh-token-grant-type.js b/lib/grant-types/refresh-token-grant-type.js index 19f9010c2..d25e9326c 100644 --- a/lib/grant-types/refresh-token-grant-type.js +++ b/lib/grant-types/refresh-token-grant-type.js @@ -69,7 +69,7 @@ RefreshTokenGrantType.prototype.handle = function(request, client) { return this.revokeToken(token); }) .then(function(token) { - return this.saveToken(token.user, client, token.scope); + return this.saveToken(token.user, client, request.body.scope); }); };