We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdfff1b commit 007ac8eCopy full SHA for 007ac8e
inelsmqtt/__init__.py
@@ -576,7 +576,7 @@ def __on_message(
576
577
if device_type == "gw" and message_type == "connected":
578
mac = message_parts[2]
579
- for stripped_topic in self.__listeners:
+ for stripped_topic in list(self.__listeners):
580
if stripped_topic.startswith(mac):
581
self.__notify_listeners(stripped_topic, True)
582
return
setup.py
@@ -4,7 +4,7 @@
4
5
setup(
6
name="elkoep-mqtt",
7
- version="0.2.33.beta.13",
+ version="0.2.33.beta.14",
8
url="https://github.com/epdevlab/elkoep-mqtt",
9
license="MIT",
10
author="Elko EP s.r.o.",
0 commit comments