Ensure rainmachine device name is a string (#56121)
This commit is contained in:
parent
6e80d27770
commit
162fab91b2
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ class RainMachineEntity(CoordinatorEntity):
|
|||
self._attr_device_info = {
|
||||
"identifiers": {(DOMAIN, controller.mac)},
|
||||
"connections": {(dr.CONNECTION_NETWORK_MAC, controller.mac)},
|
||||
"name": controller.name,
|
||||
"name": str(controller.name),
|
||||
"manufacturer": "RainMachine",
|
||||
"model": (
|
||||
f"Version {controller.hardware_version} "
|
||||
|
|
Loading…
Add table
Reference in a new issue