filter_deleted_comments

pull/4634/head
tracyspacy 1 month ago
parent 6e9b1de7a2
commit 7dc1d13d24

@ -201,10 +201,10 @@ pub async fn search(
} }
}; };
//filtering out removed comments from search results //filtering out removed and deleted comments from search results
let comments = comments let comments = comments
.into_iter() .into_iter()
.filter(|c| !c.comment.removed) .filter(|c| !c.comment.removed && !c.comment.deleted)
.collect(); .collect();
// Return the jwt // Return the jwt

Loading…
Cancel
Save