mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-22 14:45:10 +00:00
Fix missing local user from post queries. (#2447)
This commit is contained in:
parent
c9f1407429
commit
9ce15ed071
|
@ -53,6 +53,7 @@ impl PerformCrud for GetPosts {
|
|||
let mut posts = blocking(context.pool(), move |conn| {
|
||||
PostQuery::builder()
|
||||
.conn(conn)
|
||||
.local_user(local_user_view.map(|l| l.local_user).as_ref())
|
||||
.listing_type(Some(listing_type))
|
||||
.sort(sort)
|
||||
.community_id(community_id)
|
||||
|
|
|
@ -68,9 +68,9 @@ impl PerformCrud for GetPersonDetails {
|
|||
let posts = blocking(context.pool(), move |conn| {
|
||||
let posts_query = PostQuery::builder()
|
||||
.conn(conn)
|
||||
.local_user(local_user.as_ref())
|
||||
.sort(sort)
|
||||
.saved_only(saved_only)
|
||||
.local_user(local_user.as_ref())
|
||||
.community_id(community_id)
|
||||
.page(page)
|
||||
.limit(limit);
|
||||
|
|
Loading…
Reference in a new issue