Skip to content

Commit

Permalink
!hotfix: Mood & Weather ENUM 대로 전달 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
yeonjy committed Jul 26, 2024
1 parent b19dea1 commit 719bc86
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ public DetailDiaryResponse(Diary diary) {
this.id = diary.getId();
this.title = diary.getTitle();
this.content = diary.getContent();
this.mood = getMood();
this.weather = getWeather();
this.mood = diary.getMood();
this.weather = diary.getWeather();
this.travelDate = diary.getTravelDate();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ public class PreviewDiaryResponse {
public PreviewDiaryResponse(Diary diary) {
this.id = diary.getId();
this.content = diary.getContent();
this.mood = getMood();
this.weather = getWeather();
this.mood = diary.getMood();
this.weather = diary.getWeather();
this.travelDate = diary.getTravelDate();
}
}

0 comments on commit 719bc86

Please sign in to comment.