no message

This commit is contained in:
2025-04-25 11:51:48 +02:00
parent 7469d6ed1e
commit 3ecc20dc4a

View File

@@ -170,7 +170,7 @@ class Verbraucher_Sperrbar extends IPSModule
if($istSperre ==false && GetValue($this->ReadPropertyInteger("Leistung"))>=$this->ReadPropertyInteger("Mindestsperrleistung")){
$istSperre = true;
$this->SetValue("Sperrung_Aktiv", true);
}elseif($istSperre ==true && GetValue($this->ReadPropertyInteger("Leistung"))<=$this->ReadPropertyInteger("Mindestsperrleistung")){
}elseif($istSperre ==true && GetValue($this->ReadPropertyInteger("Leistung"))<$this->ReadPropertyInteger("Mindestsperrleistung")){
$istSperre = false;
$this->SetValue("Sperrung_Aktiv", false);
}