Skip to content

Commit 470badd

Browse files
authored
fix(jans-auth-server): ExternalTokenExchangeService.externalValidate returns null instead of result (#12809)
fix(jans-auth-server): ExternalTokenExchangeService.externalValidate() returns null instead of result #12804 Signed-off-by: yuriyz <yzabrovarniy@gmail.com>
1 parent c9dc41a commit 470badd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jans-auth-server/server/src/main/java/io/jans/as/server/service/external/ExternalTokenExchangeService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public ScriptTokenExchangeControl externalValidate(CustomScriptConfiguration scr
6666

6767
log.trace("Finished 'validate' method, script name: {}, clientId: {}, result: {}", script.getName(), client.getClientId(), result);
6868

69-
return null;
69+
return result;
7070
}
7171

7272
public boolean externalModifyResponse(JSONObject response, ExecutionContext context) {

0 commit comments

Comments
 (0)