Skip to content

Commit

Permalink
fix(profile) : 재직자만 조회되는 버그 픽스
Browse files Browse the repository at this point in the history
  • Loading branch information
Woongbin06 committed Apr 24, 2024
1 parent 05e090b commit 8574c19
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ private BooleanExpression recruitedFilter(Boolean isRecruited) {
return null;
}

return profile.company.isNotNull();
return isRecruited ? profile.company.isNotNull() : profile.company.isNull();
}

private BooleanExpression cardinalFilter(Long cardinal) {
Expand Down

0 comments on commit 8574c19

Please sign in to comment.