From b132ba8b4678ee5638cc0e3c1b4f892903984190 Mon Sep 17 00:00:00 2001 From: Thomas Fransolet Date: Tue, 26 Sep 2023 15:30:38 +0200 Subject: [PATCH] Fix --- MyCore/Services/Devices/DeviceService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/MyCore/Services/Devices/DeviceService.cs b/MyCore/Services/Devices/DeviceService.cs index 53cb2d8..16d9f89 100644 --- a/MyCore/Services/Devices/DeviceService.cs +++ b/MyCore/Services/Devices/DeviceService.cs @@ -393,6 +393,7 @@ namespace MyCore.Services.Devices DeviceDetailDTO deviceDetailDTO = new DeviceDetailDTO(); deviceDetailDTO.Name = zigbee2MqttDevice.friendly_name; + deviceDetailDTO.NameForAction = zigbee2MqttDevice.friendly_name; deviceDetailDTO.ServiceIdentification = zigbee2MqttDevice.ieee_address; deviceDetailDTO.ProviderId = provider.Id; deviceDetailDTO.ProviderName = provider.Name;