From 8d538fcd52797aebf707b53a02549904f521fba3 Mon Sep 17 00:00:00 2001 From: starkillerOG Date: Mon, 22 Jul 2024 11:20:02 +0200 Subject: [PATCH] Add Reolink model_id / item number (#122371) --- homeassistant/components/reolink/entity.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/reolink/entity.py b/homeassistant/components/reolink/entity.py index cf582c69e2d..c07983175ae 100644 --- a/homeassistant/components/reolink/entity.py +++ b/homeassistant/components/reolink/entity.py @@ -64,6 +64,7 @@ class ReolinkHostCoordinatorEntity(CoordinatorEntity[DataUpdateCoordinator[None] connections={(CONNECTION_NETWORK_MAC, self._host.api.mac_address)}, name=self._host.api.nvr_name, model=self._host.api.model, + model_id=self._host.api.item_number, manufacturer=self._host.api.manufacturer, hw_version=self._host.api.hardware_version, sw_version=self._host.api.sw_version,