Skip to content

Commit bc8dc7e

Browse files
authored
Merge pull request #147 from tahvane1/unarmed-trigger-clearing
Fix for not clearing triggers in unarmed case
2 parents 883d0e6 + a0a9d47 commit bc8dc7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

custom_components/jablotron80/jablotron.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1992,7 +1992,7 @@ def _process_state(self, data: bytearray, packet_data: str) -> None:
19921992
self.status = JA80CentralUnit.STATUS_NORMAL
19931993
self._call_zones(function_name="disarm")
19941994

1995-
if activity == 0x00 and not self.led_alarm:
1995+
if activity == 0x00:# and not self.led_alarm:
19961996
# clear active statuses
19971997
self._clear_triggers()
19981998

0 commit comments

Comments
 (0)