fix: don't show posts from private profiles when quoted
fix: password updating (mod)
This commit is contained in:
parent
2ec56809b8
commit
03b252937b
8 changed files with 87 additions and 36 deletions
|
@ -68,7 +68,14 @@ pub async fn posts_request(
|
|||
let ignore_users = data.0.get_userblocks_receivers(user.id).await;
|
||||
let list = match data
|
||||
.0
|
||||
.get_stack_posts(user.id, stack.id, 12, req.page, &ignore_users)
|
||||
.get_stack_posts(
|
||||
user.id,
|
||||
stack.id,
|
||||
12,
|
||||
req.page,
|
||||
&ignore_users,
|
||||
&Some(user.clone()),
|
||||
)
|
||||
.await
|
||||
{
|
||||
Ok(l) => l,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue