Fix tradfri device name (#66219)

This commit is contained in:
Patrik Lindgren
2022-02-10 08:19:59 +01:00
committed by GitHub
parent 9fd8428254
commit 543b49728a

View File

@@ -84,7 +84,7 @@ class TradfriBaseEntity(CoordinatorEntity):
identifiers={(DOMAIN, self._device.id)},
manufacturer=info.manufacturer,
model=info.model_number,
name=self._attr_name,
name=self._device.name,
sw_version=info.firmware_version,
via_device=(DOMAIN, self._gateway_id),
)