Skip to content

Commit

Permalink
[BUG] 프로젝트 카드 리스트 조회할 때, 업적 조회 시 발생하는 NPE 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
JIN-076 committed Feb 21, 2024
1 parent ece2405 commit 60bc841
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public CursorPaginationResult<ProjectDetailAPIRes> findByConditionWithPagination
project.getCreator().getGithubUrl(),
project.getCreator().getBio(),
project.getCreator().getJandiRate(),
project.getCreator().getAchievement().getTitle(),
project.getCreator().getAchievement() != null ? project.getCreator().getAchievement().getTitle() : null,
project.getCreator().getUserDevelopLanguageTags().stream().map(
UserDevelopLanguageTag::getDevelopLanguage).map(String::valueOf).toList(),
project.getCreator().getUserWantedJobTags().stream().map(
Expand Down

0 comments on commit 60bc841

Please sign in to comment.