Skip to content

Commit

Permalink
hotfix: counselorGetBaseResponse 필드 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
letskuku authored Jul 8, 2024
1 parent 2610a36 commit ec48580
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ protected CounselorGetBaseResponse(Counselor counselor) {
this.consultTypes = CounselorUtil.convertConsultTypes(counselor);
this.consultCosts = CounselorUtil.convertConsultCosts(counselor);
this.introduction = counselor.getIntroduction();
this.consultStyle = counselor.getConsultStyle().getDisplayName();
this.consultStyle = counselor.getConsultStyle() == null ? null
: counselor.getConsultStyle().getDisplayName();
}
}

0 comments on commit ec48580

Please sign in to comment.