Skip to content

Commit

Permalink
[MERGE] Merge pull request #161 from Team-WSS/fix/#160
Browse files Browse the repository at this point in the history
[FIX] QueryDsl 쿼리에서 발생한 NPE 해결
  • Loading branch information
Kim-TaeUk authored Aug 27, 2024
2 parents e1b5efa + 8d7648c commit 7cdd397
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public List<Novel> findTasteNovels(List<Genre> preferGenres) {
.limit(10)
.fetch()
.stream()
.map(tuple -> tuple.get(novel))
.map(tuple -> tuple.get(userNovel.novel))
.toList();
}
}

0 comments on commit 7cdd397

Please sign in to comment.