From 02b47f464081213fff13ca5a1fd62839f4cf6073 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Thu, 1 Aug 2019 01:46:05 +0200 Subject: [PATCH] weather: Fix property name It's g-*name*-owner. As the condition covers the unlikely case where Weather is running before gnome-shell, this slipped through. --- js/misc/weather.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/misc/weather.js b/js/misc/weather.js index 4d63d745b..3e1a2ba86 100644 --- a/js/misc/weather.js +++ b/js/misc/weather.js @@ -154,7 +154,7 @@ var WeatherClient = class { this._weatherProxy.connect('g-properties-changed', this._onWeatherPropertiesChanged.bind(this)); - if (this._weatherProxy.g_owner != null) + if (this._weatherProxy.g_name_owner != null) this._onWeatherPropertiesChanged(); }