Skip to content

Commit

Permalink
fix: 구인 게시글 조회 API 키워드로 검색 안 되는 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
youKeon committed Nov 18, 2023
1 parent 820fe9b commit 46f8784
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ private BooleanExpression positionIn(List<Position> positions) {
}

private BooleanExpression recruitmentTitleLike(String title) {
return title != null ? recruitment.title.like(title) : null;
return title != null ? recruitment.title.contains(title) : null;
}
}

0 comments on commit 46f8784

Please sign in to comment.