Skip to content

Commit

Permalink
fix: 모임 기도제목 작성자 이름 오류 수정 (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
dong2ast authored Mar 6, 2024
1 parent 9b8b31e commit 9c78d1d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class GroupPrayResponseDto {
public GroupPrayResponseDto(GroupPray groupPray, Member member, ScrapAndHeart scrapAndHeart) {
this.groupPrayId = groupPray.getId();
this.content = groupPray.getContent();
this.authorName = member.getName();
this.authorName = groupPray.getAuthor().getName();
setIsOwner(groupPray.getAuthor().getId(), member.getId());
setSC(scrapAndHeart);
this.createdAt = LocalDate.from(groupPray.getCreatedAt());
Expand Down

0 comments on commit 9c78d1d

Please sign in to comment.