mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-01 01:36:12 -04:00
filter_removed_comments_from_search
This commit is contained in:
parent
d075acce43
commit
c6d6490afa
@ -418,8 +418,10 @@ impl<'a> CommentQuery<'a> {
|
||||
.list(pool, self)
|
||||
.await?
|
||||
.into_iter()
|
||||
//filtering out removed comments from search results
|
||||
.filter(|c| !c.comment.removed)
|
||||
.map(|mut c| {
|
||||
if c.comment.deleted || c.comment.removed {
|
||||
if c.comment.deleted {
|
||||
c.comment.content = String::new();
|
||||
}
|
||||
c
|
||||
|
Loading…
Reference in New Issue
Block a user