mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-26 14:21:19 +00:00
Fix post creator_blocked
This commit is contained in:
parent
a22bbcb394
commit
46d450f565
1 changed files with 2 additions and 2 deletions
|
@ -121,8 +121,8 @@ impl PostView {
|
||||||
.left_join(
|
.left_join(
|
||||||
person_block::table.on(
|
person_block::table.on(
|
||||||
post::creator_id
|
post::creator_id
|
||||||
.eq(person_block::person_id)
|
.eq(person_block::recipient_id)
|
||||||
.and(person_block::recipient_id.eq(person_id_join)),
|
.and(person_block::person_id.eq(person_id_join)),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
.left_join(
|
.left_join(
|
||||||
|
|
Loading…
Reference in a new issue