Skip to content
This repository was archived by the owner on May 22, 2021. It is now read-only.

Commit f1b3129

Browse files
committed
Added check to avoid NullPointerException (#17)
1 parent c899ff6 commit f1b3129

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

auth/src/main/java/com/gewia/common/auth/jwt/JwtUtil.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ public Pair<DecodedJWT, VerificationResult> verify(String token) {
6868
return Pair.of(null, VerificationResult.UNKNOWN);
6969
}
7070

71-
if (jwt.getExpiresAt().before(Date.from(Instant.now()))) return Pair.of(jwt, VerificationResult.EXPIRED);
71+
if (jwt.getExpiresAt() != null && jwt.getExpiresAt().before(Date.from(Instant.now())))
72+
return Pair.of(jwt, VerificationResult.EXPIRED);
7273

7374
try {
7475
jwt = verifier.verify(jwt);

0 commit comments

Comments
 (0)