Revert "filter_removed_comments_from_search"

This reverts commit c6d6490afa.
This commit is contained in:
tracyspacy 2024-04-16 18:14:15 +02:00
parent c6d6490afa
commit 03414c7526

View file

@ -418,10 +418,8 @@ 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 { if c.comment.deleted || c.comment.removed {
c.comment.content = String::new(); c.comment.content = String::new();
} }
c c