mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fix scope issue with code grant type
This commit is contained in:
parent
b6c4cb66f5
commit
fdf5c62204
@ -533,7 +533,7 @@ public class HandlerUtil {
|
||||
if (scopes != null && scopes.isArray() && !scopes.isEmpty()) {
|
||||
StringBuilder builder = new StringBuilder();
|
||||
for (JsonNode objNode : scopes) {
|
||||
builder.append(objNode).append(" ");
|
||||
builder.append(objNode.asText()).append(" ");
|
||||
}
|
||||
return builder.toString();
|
||||
} else {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user