Skip to content

Commit

Permalink
0.9.9.9 - bug fix to remove the data attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
davesmeghead committed Oct 30, 2024
1 parent 7252318 commit 2cbd4d2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion custom_components/visonic/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
# "trigger",
#]

CLIENT_VERSION = "0.9.9.8"
CLIENT_VERSION = "0.9.9.9"

MAX_CLIENT_LOG_ENTRIES = 300

Expand Down
2 changes: 1 addition & 1 deletion custom_components/visonic/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
"loggers": ["visonic"],
"requirements": ["Pillow", "pyserial_asyncio"],
"single_config_entry": false,
"version": "0.9.9.8"
"version": "0.9.9.9"
}
2 changes: 1 addition & 1 deletion custom_components/visonic/pyvisonic.py
Original file line number Diff line number Diff line change
Expand Up @@ -2398,7 +2398,7 @@ def reset_vars():
self.B0_Message_Wanted.update(self.B0_Message_Waiting) # ask again for them
if len(self.B0_Message_Wanted) > 0:
log.debug(f"[_sequencer] ****************************** Asking For B0_Message_Wanted **************************** {self.B0_Message_Wanted} timediff={diff}")
tmp = {pmSendMsgB0[i].data if isinstance(i, str) and i in pmSendMsgB0 else i for i in self.B0_Message_Wanted}
tmp = {pmSendMsgB0[i] if isinstance(i, str) and i in pmSendMsgB0 else i for i in self.B0_Message_Wanted}
self.B0_Message_Wanted = set()
s = self._create_B0_Data_Request(taglist = list(tmp))
self._addMessageToSendList(s)
Expand Down

0 comments on commit 2cbd4d2

Please sign in to comment.