Skip to content

Commit

Permalink
Merge pull request #149 from prgrms-web-devcourse-final-project/hotfix/
Browse files Browse the repository at this point in the history
…#147-readProductError

[Hotfix] : 상품 조회 query 에러 수정
  • Loading branch information
Icecoff22 authored Dec 20, 2024
2 parents 27c1fbf + 891dbb8 commit 7defacd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ private BooleanExpression blockNotInCondition(List<Long> blockUserIds) {
return null;
}

return qUserEntity.id.notIn(blockUserIds);
return qProduct.user.id.notIn(blockUserIds);
}

private BooleanExpression isNotDeleted() {
Expand Down

0 comments on commit 7defacd

Please sign in to comment.