Skip to content

Commit

Permalink
[FIX] 대표업적을 설정하지 않았을 때 User 정보를 받아올 수 없었던 현상 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
tidavid1 committed Feb 21, 2024
1 parent 10e7a83 commit 654ae10
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public static UserProfileResponse from(User user) {
user.getGithubUrl(),
user.getBio(),
user.getJandiRate(),
user.getAchievement().getTitle(),
user.getAchievement() == null ? null : user.getAchievement().getTitle(),
user.getUserDevelopLanguageTags().stream().map(
UserDevelopLanguageTag::getDevelopLanguage).toList(),
user.getUserWantedJobTags().stream().map(
Expand Down

0 comments on commit 654ae10

Please sign in to comment.