qbaware / homeassistant-eldom

Integrating Eldom devices into Home Assistant
MIT License
2 stars 0 forks source link

Correct device name field to not show the email of the user, but to rather show device name #15

Open danielgospodinow opened 2 hours ago

danielgospodinow commented 2 hours ago
image
danielgospodinow commented 2 hours ago

Here's an example of how it should be:

image image
danielgospodinow commented 2 hours ago

Seems to be an easy fix:

        return DeviceInfo(
            name=self._water_heater.name,
        )

The name prop of the DeviceInfo class should be populated.