Skip to content

Commit

Permalink
fix: { 문법 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
gywns0417 committed Feb 15, 2024
1 parent 3c0c709 commit 6436058
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ private BalanceOption validateBalanceOptionId(CommentCreateRequest request, Post
private Comment validateCommentId(Long commentId) {
return commentRepository.findById(commentId)
.orElseThrow(() -> new BalanceTalkException(NOT_FOUND_COMMENT));
}

public Long likeComment(Long postId, Long commentId, Long memberId) {
Comment comment = commentRepository.findById(commentId)
Expand Down

0 comments on commit 6436058

Please sign in to comment.