summarylogtreecommitdiffstats
path: root/hack-detached.diff
blob: 7e340bc4a2ba12aa42f5c5767bbe02aba39f31e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
diff --git i/js/misc/weather.js w/js/misc/weather.js
index aaec36cf4..3b09c28c1 100644
--- i/js/misc/weather.js
+++ w/js/misc/weather.js
@@ -183,10 +183,8 @@ var WeatherClient = class {
 
     _onGClueLocationChanged() {
         let geoLocation = this._gclueService.location;
-        let location = GWeather.Location.new_detached(geoLocation.description,
-                                                      null,
-                                                      geoLocation.latitude,
-                                                      geoLocation.longitude);
+        let location = this._world.find_nearest_city(geoLocation.latitude,
+                                                     geoLocation.longitude);
         this._setLocation(location);
     }