From b1daf2e8bc53b658d3b4c72445882ab761e772da Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Sun, 31 Aug 2025 10:29:25 -0400 Subject: [PATCH] Location: Set stable name on load to the user specified name. Until we get a proper weather update --- Services/LocationService.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/Services/LocationService.qml b/Services/LocationService.qml index a8f71b6..6483428 100644 --- a/Services/LocationService.qml +++ b/Services/LocationService.qml @@ -32,6 +32,7 @@ Singleton { if (adapter.latitude !== "" && adapter.longitude !== "" && adapter.weatherLastFetch > 0) { root.stableLatitude = adapter.latitude root.stableLongitude = adapter.longitude + root.stableName = adapter.name root.coordinatesReady = true Logger.log("Location", "Coordinates ready") }