From a7f59fb6091e8013835aa6241b0bca27052bdbb6 Mon Sep 17 00:00:00 2001 From: JonatanRek Date: Sun, 25 Aug 2019 14:08:00 +0200 Subject: [PATCH] Missed Debug msg --- views/Automation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/Automation.php b/views/Automation.php index 4e702a4..4370fab 100644 --- a/views/Automation.php +++ b/views/Automation.php @@ -23,7 +23,7 @@ class Automation extends Template foreach (json_decode($automationData['do_something']) as $deviceId => $subDeviceState) { $subDeviceMasterDeviceData = DeviceManager::getDeviceById($deviceId); $doSomething[$deviceId] = [ - 'name' => $subDeviceMasterDeviceData['name'] . $subDeviceMasterDeviceData['device_id'] , + 'name' => $subDeviceMasterDeviceData['name'], 'state' => $subDeviceState, ]; }