mirror of https://github.com/LemmyNet/lemmy.git
Exclude removed/deleted posts from community outbox (#2184)
parent
589d952a95
commit
56b275acd4
|
@ -50,6 +50,8 @@ impl Post {
|
||||||
use crate::schema::post::dsl::*;
|
use crate::schema::post::dsl::*;
|
||||||
post
|
post
|
||||||
.filter(community_id.eq(the_community_id))
|
.filter(community_id.eq(the_community_id))
|
||||||
|
.filter(deleted.eq(false))
|
||||||
|
.filter(removed.eq(false))
|
||||||
.then_order_by(published.desc())
|
.then_order_by(published.desc())
|
||||||
.then_order_by(stickied.desc())
|
.then_order_by(stickied.desc())
|
||||||
.limit(20)
|
.limit(20)
|
||||||
|
|
Loading…
Reference in New Issue