Few Fixes After infrastructure migration

This commit is contained in:
2020-09-14 15:15:47 +02:00
parent 32521d0ed3
commit 30da6e162b
5 changed files with 23 additions and 13 deletions

View File

@@ -12,7 +12,7 @@ class WidgetApi extends ApiController{
$subDeviceData = SubDeviceManager::getSubDevice($subDeviceId);
if ($subDeviceData['type'] == 'on/off'){
$lastValue = RecordManager::getLastRecord($subDeviceData['subdevice_id'])['value'];
RecordManager::create($subDeviceData['device_id'], 'on/off', !$lastValue);
RecordManager::create($subDeviceData['device_id'], 'on/off', (int) !$lastValue);
$response = !$lastValue;
} else {
throw new Exception("Bad Request", 403);