Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions publisher/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
import mqtt_topics
from configuration import Configuration

INVALID_MQTT_CHARS = re.compile(r'[^a-zA-Z0-9/]')

INVALID_MQTT_CHARS = re.compile(r'[+#*$>]')

class MqttCommandListener(ABC):
async def on_mqtt_command_received(self, *, vin: str, topic: str, payload: str) -> None:
Expand Down
Loading