mirror of https://github.com/LemmyNet/lemmy.git
Do not hide read posts when it is a user profile view (#3791)
parent
58388f2ce8
commit
b4380cb548
|
@ -308,7 +308,10 @@ fn queries<'a>() -> Queries<
|
|||
.map(|l| l.local_user.show_read_posts)
|
||||
.unwrap_or(true)
|
||||
{
|
||||
query = query.filter(post_read::post_id.is_null());
|
||||
// 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() {
|
||||
|
|
Loading…
Reference in New Issue