Skip to content

Commit

Permalink
[hotfix] 대댓글 수정시 lastEditedAt 반환 안되는 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
chahyunsoo committed Aug 28, 2024
1 parent aba533a commit 2bb688e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ public PostReplyComment toDomain(PostReplyComment postReplyComment, Long userId)
postReplyComment.getCommentId(),
userId,
DateUtils.parseHourMinSecFromCustomString(postReplyComment.getCreatedAt()),
DateUtils.parseHourMinSecFromCustomString(postReplyComment.getUpdatedAt()),
LocalDateTime.now(),
DateUtils.parseHourMinSecFromCustomString(postReplyComment.getLastEditedAt()),
postReplyComment.getIsDeleted(),
DateUtils.parseHourMinSecFromCustomString(postReplyComment.getDeletedAt())
);
}

}

0 comments on commit 2bb688e

Please sign in to comment.