diff --git a/homeassistant/components/denonavr/media_player.py b/homeassistant/components/denonavr/media_player.py index eab4c1df3a60a..b56cac995be27 100644 --- a/homeassistant/components/denonavr/media_player.py +++ b/homeassistant/components/denonavr/media_player.py @@ -217,6 +217,9 @@ async def wrapper( class DenonDevice(MediaPlayerEntity): """Representation of a Denon Media Player Device.""" + _attr_has_entity_name = True + _attr_name = None + def __init__( self, receiver: DenonAVR, @@ -225,7 +228,6 @@ def __init__( update_audyssey: bool, ) -> None: """Initialize the device.""" - self._attr_name = receiver.name self._attr_unique_id = unique_id assert config_entry.unique_id self._attr_device_info = DeviceInfo( @@ -234,7 +236,7 @@ def __init__( identifiers={(DOMAIN, config_entry.unique_id)}, manufacturer=config_entry.data[CONF_MANUFACTURER], model=config_entry.data[CONF_MODEL], - name=config_entry.title, + name=receiver.name, ) self._attr_sound_mode_list = receiver.sound_mode_list