Skip to content

Commit

Permalink
Merge pull request #266 from sharemindteam/develop
Browse files Browse the repository at this point in the history
release: post 답변 5개인 경우 status 값 수정 배포
  • Loading branch information
letskuku authored Oct 10, 2024
2 parents b1af449 + c07528c commit adb020e
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
@@ -142,7 +142,7 @@ public void decreaseTotalLike() {
public void increaseTotalComment() {
this.totalComment++;
if (totalComment.equals(MAX_COMMENTS)) {
this.updatePostStatus(PostStatus.COMPLETED);
this.updatePostStatus(PostStatus.TIME_OUT);
}
}

0 comments on commit adb020e

Please sign in to comment.