mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-01 01:36:12 -04:00
Do not hide read posts when it is a user profile view (#3791)
This commit is contained in:
parent
58388f2ce8
commit
b4380cb548
@ -308,8 +308,11 @@ fn queries<'a>() -> Queries<
|
||||
.map(|l| l.local_user.show_read_posts)
|
||||
.unwrap_or(true)
|
||||
{
|
||||
// Do not hide read posts when it is a user profile view
|
||||
if !is_profile_view {
|
||||
query = query.filter(post_read::post_id.is_null());
|
||||
}
|
||||
}
|
||||
|
||||
if options.local_user.is_some() {
|
||||
// Filter out the rows with missing languages
|
||||
|
Loading…
Reference in New Issue
Block a user