Skip to content

Commit

Permalink
update :: null 체크 로직 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
4mjeo committed Feb 28, 2024
1 parent 387652c commit dd21f7a
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ class AuthenticationFilter(
response: HttpServletResponse,
filterChain: FilterChain
) {
if (request.requestURI.contains("/oauth2/token")) {
filterChain.doFilter(request, response)
return
}

request.getParameter("access_token")?.let { accessToken ->
setAuthenticationByAccessToken(accessToken)
Expand Down

0 comments on commit dd21f7a

Please sign in to comment.