repairt bug

This commit is contained in:
haitem 2021-01-15 13:38:47 +01:00
parent dc77534bad
commit c17e3090a8
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ class RecordManager{
//Ochrana proti duplicitním hodnotám zapisují se jen změny //Ochrana proti duplicitním hodnotám zapisují se jen změny
$lastRecord = self::getLastRecord($subDeviceId, 1); $lastRecord = self::getLastRecord($subDeviceId, 1);
if ($lastRecord['value'] == $value){ if (isset($lastRecord['value']) && $lastRecord['value'] == $value){
return false; return false;
} }
@ -114,6 +114,6 @@ class RecordManager{
public static function setHistory($subDeviceId){ public static function setHistory($subDeviceId){
$history = SubDeviceManager::getSubDevice($subDeviceId)['history']; $history = SubDeviceManager::getSubDevice($subDeviceId)['history'];
if ($history > 0) self::clean(-abs($history)); if ($history > 0) self::clean(-abs($history));
} }
} }
?> ?>