Skip to content

Commit

Permalink
hotfix: post 답변 완료일시 업데이트 로직 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
letskuku authored Aug 9, 2024
1 parent 23e7b10 commit 7b64bce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/example/sharemind/post/domain/Post.java
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public void updatePostStatus(PostStatus postStatus) {
}

if (this.postStatus == PostStatus.COMPLETED) {
this.finishedAt = LocalDateTime.now().withNano(0);
this.finishedAt = LocalDateTime.now();
}
}

Expand Down

0 comments on commit 7b64bce

Please sign in to comment.