filtering_removed_comments_search

This commit is contained in:
tracyspacy 2024-04-16 18:33:52 +02:00
parent 03414c7526
commit 6e9b1de7a2

View file

@ -201,6 +201,12 @@ pub async fn search(
}
};
//filtering out removed comments from search results
let comments = comments
.into_iter()
.filter(|c| !c.comment.removed)
.collect();
// Return the jwt
Ok(Json(SearchResponse {
type_: search_type,