diff --git a/CC100_HW/module.php b/CC100_HW/module.php index 28bf887..f04bbf0 100644 --- a/CC100_HW/module.php +++ b/CC100_HW/module.php @@ -69,13 +69,10 @@ class CC100_HW extends IPSModule private function readAndConvertToBools($filePath) { - // Überprüfen, ob die Datei existiert und lesbar ist - if (!file_exists($filePath) || !is_readable($filePath)) { - break; - } + // Inhalt der Datei auslesen - $content = file_get_contents($filePath); + $content = @file_get_contents($filePath); if ($content === false) { throw new Exception("Fehler beim Lesen der Datei $filePath."); diff --git a/library.json b/library.json index 762e71d..11ad11b 100644 --- a/library.json +++ b/library.json @@ -6,7 +6,7 @@ "compatibility": { "version": "7.1" }, - "version": "0.153", + "version": "0.154", "build": 0, "date": 0 } \ No newline at end of file