diff --git a/homeassistant/components/dlna_dmr/media_player.py b/homeassistant/components/dlna_dmr/media_player.py index 5d53b8856e4..bee65afa8ec 100644 --- a/homeassistant/components/dlna_dmr/media_player.py +++ b/homeassistant/components/dlna_dmr/media_player.py @@ -420,6 +420,13 @@ class DlnaDmrEntity(MediaPlayerEntity): device_id=device_entry.id, ) + self._attr_device_info = dr.DeviceInfo( + connections=connections, + default_manufacturer=self._device.manufacturer, + default_model=self._device.model_name, + default_name=self._device.name, + ) + async def _device_disconnect(self) -> None: """Destroy connections to the device now that it's not available.