Skip to content

Commit

Permalink
fix: 어노테이션 등록이 안된 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ksk0605 committed Jul 31, 2024
1 parent de0bcdd commit 64921cf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class LoginMemberArgumentResolver implements HandlerMethodArgumentResolve

@Override
public boolean supportsParameter(MethodParameter parameter) {
return false;
return parameter.hasParameterAnnotation(LoginMember.class);
}

@Override
Expand Down

0 comments on commit 64921cf

Please sign in to comment.