Skip to content

Commit

Permalink
Deploy : Jwt manger fix
Browse files Browse the repository at this point in the history
  • Loading branch information
404-not-foundl committed Mar 28, 2024
1 parent c8e4991 commit c503747
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ public Mono<String> checkAccessToken(ServerWebExchange exchange) {
.flatMap(cookie -> tokenRepository.getToken(cookie.getValue())
.switchIfEmpty(Mono.defer(() -> checkRefreshToken(exchange)))
)
.switchIfEmpty(Mono.defer(() -> checkRefreshToken(exchange)))
.defaultIfEmpty("null");
}

Expand Down

0 comments on commit c503747

Please sign in to comment.