Skip to content

Commit

Permalink
Deploy : Jwt refreshing cookie fix
Browse files Browse the repository at this point in the history
  • Loading branch information
404-not-foundl committed Mar 28, 2024
1 parent dcddcb0 commit e7b7aaa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public Mono<String> checkRefreshToken(ServerWebExchange exchange) {
.thenReturn(internalId)
)
)
.defaultIfEmpty("null");
.switchIfEmpty(Mono.just("null"));
}

public Mono<Void> regenerateToken(String internalId, ServerWebExchange exchange) {
Expand Down

0 comments on commit e7b7aaa

Please sign in to comment.