From 6e0f7b6d05b2aa864fca03dc53a2821d5ad61126 Mon Sep 17 00:00:00 2001 From: ImBenji Date: Tue, 5 Aug 2025 15:11:24 +0100 Subject: [PATCH] Add geolocation coordinates to server registration data --- lib/services/server_service.dart | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/services/server_service.dart b/lib/services/server_service.dart index 360f014..2f46f5d 100644 --- a/lib/services/server_service.dart +++ b/lib/services/server_service.dart @@ -25,6 +25,10 @@ class ServerService { "geolocation": { "country_code": geolocationData.continentCode, "city": geolocationData.city, + "coords": [ + geolocationData.latitude, + geolocationData.longitude + ], } }); }