From c07528cf1f43f0b99c5115f6945bd22dc6477140 Mon Sep 17 00:00:00 2001 From: Yujeong Lee <90572599+letskuku@users.noreply.github.com> Date: Thu, 10 Oct 2024 16:45:29 +0900 Subject: [PATCH] =?UTF-8?q?hotfix:=20post=20=EB=8B=B5=EB=B3=80=205?= =?UTF-8?q?=EA=B0=9C=EC=9D=B8=20=EA=B2=BD=EC=9A=B0=20status=20=EA=B0=92=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/example/sharemind/post/domain/Post.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/example/sharemind/post/domain/Post.java b/src/main/java/com/example/sharemind/post/domain/Post.java index 9ffe4344..06d8aea2 100644 --- a/src/main/java/com/example/sharemind/post/domain/Post.java +++ b/src/main/java/com/example/sharemind/post/domain/Post.java @@ -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); } }