Always add friendly name attribute to ZHA entities (#19141)

* Always add friendly name attribute

* Only change device_info name
pull/19279/head
damarco 2018-12-13 23:08:35 +01:00 committed by Paulus Schoutsen
parent eada1a184c
commit f60f9bae00
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ class ZhaEntity(entity.Entity):
'identifiers': {(DOMAIN, ieee)},
'manufacturer': self._endpoint.manufacturer,
'model': self._endpoint.model,
'name': self._device_state_attributes['friendly_name'],
'name': self._device_state_attributes.get('friendly_name', ieee),
'via_hub': (DOMAIN, self.hass.data[DATA_ZHA][DATA_ZHA_BRIDGE_ID]),
}