Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kurotych committed Dec 12, 2024
1 parent 7088f65 commit 4c96883
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mobile_config/src/gateway_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -300,10 +300,10 @@ impl mobile_config::Gateway for GatewayService {
"Invalid min_refreshed_at argument",
))?;

let updated_redios =
let updated_radios =
get_updated_radios(&mobile_config_db_pool, min_updated_at).await?;
let stream = stream
.filter(|v| future::ready(updated_redios.contains(&v.address)))
.filter(|v| future::ready(updated_radios.contains(&v.address)))
.boxed();
stream_multi_gateways_info(stream, tx.clone(), signing_key.clone(), batch_size)
.await
Expand Down

0 comments on commit 4c96883

Please sign in to comment.