Skip to content

Commit

Permalink
[#103] fix: 조회수 관련 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
dl-00-e8 committed Apr 21, 2024
1 parent 431f2e9 commit b6fb140
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ public Post(String title, Member member, String contents, String contestLink, Lo
this.daysRemaining = finishDate.isBefore(LocalDateTime.now()) ? -1 : ChronoUnit.DAYS.between(LocalDateTime.now(), finishDate);
this.stackNames = stackNames;
this.categories = categories;
this.postView = 0L;
}

public void modify(PostModifyReq req) {
Expand Down

0 comments on commit b6fb140

Please sign in to comment.