Skip to content

Commit 5e30fc0

Browse files
Thomasrludomikula
Thomasr
authored andcommitted
null name issue fixed
1 parent 0df085d commit 5e30fc0

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

server/api-service/lowcoder-server/src/main/java/org/lowcoder/api/authentication/util/AuthenticationUtils.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ public static AuthUser mergeAuthUser(AuthUser low, AuthUser high) {
112112
return AuthUser.builder()
113113
.uid(high.getUid() != null ? high.getUid() : low.getUid())
114114
.username(high.getUsername() != null ? high.getUsername() : low.getUsername())
115-
.email(high.getEmail() != null ? high.getEmail() : low.getEmail())
116115
.avatar(high.getAvatar() != null ? high.getAvatar() : low.getAvatar())
117116
.rawUserInfo(high.getRawUserInfo() != null ? high.getRawUserInfo() : low.getRawUserInfo())
118117
.authToken(high.getAuthToken() != null ? high.getAuthToken() : low.getAuthToken())

0 commit comments

Comments
 (0)