Skip to content

Commit

Permalink
Fix(#171): null이 아니라 중복값으로 주도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
mingeun0507 committed May 25, 2023
1 parent f106bfe commit bf75315
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ public InitialProjectReportResponseDto getInitialProjectReport(Long userId, Long
.builder()
.projectReportInfoDto(projectReportInfoDto)
.emotion1(middleRemembrance.getEmotion())
.emotion2(middleRemembrance.getEmotion() == finalRemembrance.getEmotion() ? null : finalRemembrance.getEmotion())
.emotion2(finalRemembrance.getEmotion())
.projectMiddleFinalQnaDto(
ProjectMiddleFinalQnaDto
.builder()
Expand Down

0 comments on commit bf75315

Please sign in to comment.