From 0feaa931d778556b4002370c35ff9380c7747398 Mon Sep 17 00:00:00 2001 From: taejin1221 Date: Mon, 2 Sep 2024 15:43:11 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20RefreshToken=20=EB=A7=A4=EB=B2=88=20?= =?UTF-8?q?=EC=83=9D=EC=84=B1=20=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Related to: #2 --- src/main/java/kaboo/kaboo_auth/domain/jwt/filter/JwtFilter.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/kaboo/kaboo_auth/domain/jwt/filter/JwtFilter.java b/src/main/java/kaboo/kaboo_auth/domain/jwt/filter/JwtFilter.java index ea332ca..c62d302 100644 --- a/src/main/java/kaboo/kaboo_auth/domain/jwt/filter/JwtFilter.java +++ b/src/main/java/kaboo/kaboo_auth/domain/jwt/filter/JwtFilter.java @@ -82,6 +82,8 @@ protected void doFilterInternal(HttpServletRequest request, HttpServletResponse SecurityContextHolder.getContext().setAuthentication(authentication); chain.doFilter(request, response); + + return; } }