bug fix: receive while callback added

This commit is contained in:
Dirk Alders 2022-12-21 14:23:11 +01:00
parent 1921bc619a
commit 79ac04ffdb

View File

@ -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)