-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
🔨 fixModifying previously implemented featuresModifying previously implemented features
Description
💼 작업 설명
선물이 없는 나중에 보내는 선물박스의 경우 getGift()에서 NPE가 발생하여 선물박스를 삭제하지 못하는 에러를 수정합니다.
if (giftBox.getGift().getGiftType().equals(GiftType.PHOTO)) {
fileService.deleteFile(giftBox.getGift().getGiftUrl());
}✅ To-do
- 나중에 보내는 선물박스 삭제 로직에 null check 추가
- GiftBox 엔티티의 gift 필드를 Optional로 수정
GiftBox 엔티티의 gift 필드를 Optional로 수정하는 작업은 변경되는 코드가 많으므로 우선 null check를 추가한 뒤, 추후 테스트 코드 커버리지가 높아진 후 작업하면 좋을 것 같습니다.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
🔨 fixModifying previously implemented featuresModifying previously implemented features