Skip to content

Commit

Permalink
Fix get_updated_radios return type
Browse files Browse the repository at this point in the history
  • Loading branch information
kurotych committed Jan 21, 2025
1 parent 82e1b9d commit 3a0491b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobile_config/src/mobile_radio_tracker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ const GET_UPDATED_RADIOS: &str =
pub async fn get_updated_radios(
pool: &Pool<Postgres>,
min_updated_at: DateTime<Utc>,
) -> anyhow::Result<HashMap<PublicKeyBinary, DateTime<Utc>>> {
) -> anyhow::Result<TrackedRadiosMap> {
sqlx::query(GET_UPDATED_RADIOS)
.bind(min_updated_at)
.fetch(pool)
Expand Down

0 comments on commit 3a0491b

Please sign in to comment.