Fix sending empty longitude when creating the initial report

This commit is contained in:
Eli Ribble 2026-04-12 16:29:37 +00:00
parent 60eb6b9bbf
commit ab47259534
No known key found for this signature in database

View file

@ -84,7 +84,7 @@ async function createReport(client_id: string, loc?: GeolocationPosition) {
} else {
formData.append("location.accuracy", "0");
formData.append("location.latitude", "0");
formData.append("longitude", "0");
formData.append("location.longitude", "0");
}
const resp = await fetch("/api/rmo/compliance", {
method: "POST",