Skip to content

Commit

Permalink
[fix] #171 프로필 이미지 널포인터 익셉션 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
dyk-im committed Feb 5, 2025
1 parent 820d58b commit 0782c12
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public static ChatMemberResponseDto of(MeetingParticipant participant, Boolean i
.memberId(participant.getMember().getMemberId())
.nickname(participant.getMember().getNickname())
.mbti(participant.getMember().getMbti())
.profileImageUrl(participant.getMember().getProfileImage().getImageUrl())
.profileImageUrl(participant.getMember().getProfileImage() != null ? participant.getMember().getProfileImage().getImageUrl() : null)
.role(participant.getRole())
.isMine(isMine)
.build();
Expand Down

0 comments on commit 0782c12

Please sign in to comment.