wunderground: Switch value used for weather condition name (#793)
`wxPhraseShort` ends up being abbreviated a lot. `wxPhraseMedium` is equivalent to how wunderground worked before the recent rewrite. I just ended up missing this during the rewrite.
This commit is contained in:
parent
992fb8cecb
commit
bfbdc60b31
@ -206,7 +206,7 @@ class Wunderground(WeatherBackend):
|
||||
pressure_trend = '+' if pressure_tendency == 'rising' else '-'
|
||||
|
||||
self.data['city'] = _find('v3-location-point:location:city', overview)
|
||||
self.data['condition'] = _find('v3-wx-observations-current:wxPhraseShort', overview)
|
||||
self.data['condition'] = _find('v3-wx-observations-current:wxPhraseMedium', overview)
|
||||
self.data['observation_time'] = observation_time
|
||||
self.data['current_temp'] = _find('units:temp', observation, '0')
|
||||
self.data['low_temp'] = _find('units:tempLow', summary)
|
||||
|
Loading…
Reference in New Issue
Block a user