mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-28 16:37:44 +00: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)
|
.list(pool, self)
|
||||||
.await?
|
.await?
|
||||||
.into_iter()
|
.into_iter()
|
||||||
|
//filtering out removed comments from search results
|
||||||
|
.filter(|c| !c.comment.removed)
|
||||||
.map(|mut c| {
|
.map(|mut c| {
|
||||||
if c.comment.deleted || c.comment.removed {
|
if c.comment.deleted {
|
||||||
c.comment.content = String::new();
|
c.comment.content = String::new();
|
||||||
}
|
}
|
||||||
c
|
c
|
||||||
|
|
Loading…
Reference in a new issue