remove comments about filtering buggy items

This commit is contained in:
Charles Hall 2024-05-15 15:43:56 -07:00
parent 40f9aa6f60
commit 3efe3fb337
No known key found for this signature in database
GPG key ID: 7B8E0645816E07CF
8 changed files with 10 additions and 14 deletions

View file

@ -20,7 +20,6 @@ pub(crate) async fn search_users_route(
let limit = body.limit.try_into().unwrap_or(usize::MAX);
let mut users = services().users.iter().filter_map(|user_id| {
// Filter out buggy users (they should not exist, but you never know...)
let user_id = user_id.ok()?;
let user = search_users::v3::User {