mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-15 08:54:01 +00:00
Fixing community local filter. #1302
This commit is contained in:
parent
b587e147b0
commit
8a0336c2ff
1 changed files with 1 additions and 1 deletions
|
@ -280,7 +280,7 @@ impl<'a> PostQueryBuilder<'a> {
|
||||||
if let Some(for_community_name) = self.for_community_name {
|
if let Some(for_community_name) = self.for_community_name {
|
||||||
query = query
|
query = query
|
||||||
.filter(community_name.eq(for_community_name))
|
.filter(community_name.eq(for_community_name))
|
||||||
.filter(local.eq(true))
|
.filter(community_local.eq(true))
|
||||||
.then_order_by(stickied.desc());
|
.then_order_by(stickied.desc());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue