Skip to content

Commit

Permalink
fix: Redis 캐시 직렬화 오류 수정
Browse files Browse the repository at this point in the history
- Entity의 Lazy Loading된 interest 컬렉션을 DTO 변환 시 즉시 초기화하도록 수정
  • Loading branch information
23tae committed Dec 5, 2024
1 parent 10960f9 commit ea8dfba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class MeetingDtoConverter {
appearanceType = userInfo.appearanceType,
eyelidType = userInfo.eyelidType,
smoking = userInfo.smoking,
interest = userInfo.interest,
interest = userInfo.interest?.toList(),
kakaoTalkId = userTeam.user.kakaoTalkId!!
)
} catch (e: NullPointerException) {
Expand Down

0 comments on commit ea8dfba

Please sign in to comment.