From 66beb30d938c1d118397f683184e501fb8f73080 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Mon, 9 Mar 2026 18:29:03 +0000 Subject: [PATCH] Properly encode lat/lng on location --- platform/types/location.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/types/location.go b/platform/types/location.go index 1844741a..0e35045f 100644 --- a/platform/types/location.go +++ b/platform/types/location.go @@ -1,6 +1,6 @@ package types type Location struct { - Latitude float64 `db:"latitude"` - Longitude float64 `db:"longitude"` + Latitude float64 `db:"latitude" json:"latitude"` + Longitude float64 `db:"longitude" json:"longitude"` }