bug fix: receive while callback added
This commit is contained in:
parent
1921bc619a
commit
79ac04ffdb
@ -83,7 +83,7 @@ class mqtt_client(object):
|
||||
|
||||
def __receive__(self, client, userdata, message):
|
||||
logger.debug("Received message with topic %s and payload %s", message.topic, str(message.payload))
|
||||
for topic in self.__callbacks__:
|
||||
for topic in self.__callbacks__.copy():
|
||||
if topic.endswith('#'):
|
||||
if message.topic.startswith(topic[:-1]):
|
||||
self.__callbacks__[topic](client, userdata, message)
|
||||
|
Loading…
x
Reference in New Issue
Block a user