fix nightly clippy lint
Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
parent
6c461025e5
commit
792d4aa6ce
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ pub(crate) async fn search_events_route(body: Ruma<search_events::v3::Request>)
|
||||||
};
|
};
|
||||||
|
|
||||||
let mut results = Vec::new();
|
let mut results = Vec::new();
|
||||||
let next_batch: usize = skip.saturating_add(limit);
|
let next_batch = skip.saturating_add(limit);
|
||||||
|
|
||||||
for _ in 0..next_batch {
|
for _ in 0..next_batch {
|
||||||
if let Some(s) = searches
|
if let Some(s) = searches
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue