Skip to content

Commit 1a3b07e

Browse files
committed
[FIX] 쿠키 없는 상태에서 요청시 예외 대신 null 반환
1 parent 2210482 commit 1a3b07e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/example/be/service/JwtUtilServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public String extractTokenFromCookie(HttpServletRequest request, String cookieNa
119119
}
120120
}
121121
}
122-
throw new UserHandler(ErrorStatus._NOT_FOUND_COOKIE);
122+
return null;
123123
}
124124

125125
}

0 commit comments

Comments
 (0)