Skip to content

Commit d4d25a0

Browse files
authored
Merge pull request #285 from nanomad/develop
#279: Restore the original normalization rule
2 parents ab86deb + 18a5214 commit d4d25a0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

publisher/core.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
import mqtt_topics
77
from configuration import Configuration
88

9-
INVALID_MQTT_CHARS = re.compile(r'[^a-zA-Z0-9/]')
10-
9+
INVALID_MQTT_CHARS = re.compile(r'[+#*$>]')
1110

1211
class MqttCommandListener(ABC):
1312
async def on_mqtt_command_received(self, *, vin: str, topic: str, payload: str) -> None:

0 commit comments

Comments
 (0)