suggested fix for gps feature, sorting timestamps

This commit is contained in:
Carlos Guerra
2026-04-29 11:18:30 +02:00
committed by Will Greenberg
parent 7bae34061d
commit 049a842987
+1
View File
@@ -94,6 +94,7 @@ pub async fn load_gps_records(file: tokio::fs::File) -> Vec<GpsRecord> {
}
}
}
records.sort_by_key(|r| r.unix_ts);
records
}