softened error from scope checker -- returns false now, allows things to pass through

pull/263/head
Justin Richer 2012-11-20 14:08:18 -05:00
parent 9c08944a02
commit d9b6918bc2
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ public class TofuUserApprovalHandler implements UserApprovalHandler {
for (String scope : requestedScopes) {
if (!allowedScopes.contains(scope)) {
throw new InvalidScopeException("Invalid scope: " + scope, allowedScopes);
return false; //throw new InvalidScopeException("Invalid scope: " + scope, allowedScopes);
}
}