-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Fix]: 메이커스 이미지 방지 #536
[Fix]: 메이커스 이미지 방지 #536
Conversation
Related to: #535
|
List<AnonymousProfileImage> anonymousProfileImages = anonymousProfileImageRepository.findAll(); | ||
for (AnonymousProfileImage image : anonymousProfileImages) { | ||
profileImageMap.put(image.getId(), image); | ||
if (!image.getId().equals(MAKERS_LOGO_IMAGE_ID)) { | ||
profileImageMap.put(image.getId(), image); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
흠 6번만 제외라면 여기서 exclude 하고 쿼리하는 건 별로일까요??
나중에 익명 프로필 이미지 추가되거나 할 때도 쿼리 레벨에서 처리하는 게 더 깔끔해보입니다!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
진짜 베스트 아이디어라고 생각합니다 바로 반영했습니다!
Related to: #535
Related to: #535
🐬 요약
익명 댓글을 작성할 때 메이커스 로고가 선택되는 경우를 방지했습니다.
이미지 목록 Map에 초기화 할 때 id가 6인 이미지는 제외했습니다.
👻 유형
PR의 유형에 맞게 체크해주세요!
🍀 작업 내용
PR에 담긴 작업 내용을 작성해주세요!
🌟 관련 이슈
PR과 관련된 이슈 번호를 작성해주세요!
close: #535