mirror of
https://gitlab.computer.surgery/matrix/grapevine.git
synced 2025-12-17 15:51:23 +01:00
how did clippy not catch this
This commit is contained in:
parent
4aab4c9b2e
commit
46731d1f85
1 changed files with 1 additions and 1 deletions
|
|
@ -305,7 +305,7 @@ pub(crate) async fn get_public_rooms_filtered_helper(
|
|||
};
|
||||
Ok(chunk)
|
||||
})
|
||||
.filter_map(|r: Result<_>| r.ok()) // Filter out buggy rooms
|
||||
.filter_map(Result::<_>::ok) // Filter out buggy rooms
|
||||
.filter(|chunk| {
|
||||
if let Some(query) = filter
|
||||
.generic_search_term
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue