Skip to content

Commit 5034493

Browse files
Thomasludomikula
Thomas
authored andcommitted
null pointer exception handler
1 parent 49c7b2e commit 5034493

File tree

1 file changed

+1
-1
lines changed
  • server/api-service/lowcoder-server/src/main/java/org/lowcoder/api/authentication/request/oauth2/request

1 file changed

+1
-1
lines changed

server/api-service/lowcoder-server/src/main/java/org/lowcoder/api/authentication/request/oauth2/request/GenericAuthRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ protected Mono<AuthToken> refreshAuthToken(String refreshToken) {
7676

7777
@Override
7878
protected Mono<AuthUser> getAuthUser(AuthToken authToken) {
79-
if(!config.getUserInfoIntrospection()) return Mono.just(AuthUser.builder().build());
79+
if(!Boolean.TRUE.equals(config.getUserInfoIntrospection())) return Mono.just(AuthUser.builder().build());
8080
return WebClientBuildHelper.builder()
8181
.systemProxy()
8282
.timeoutMs(HTTP_TIMEOUT)

0 commit comments

Comments
 (0)