Skip to content

Commit

Permalink
feat: allow empty MQTT prefix (#4)
Browse files Browse the repository at this point in the history
Mowgli docker currently has no prefix so this should not be required. It needs to be added in the future to clean up the messages.
  • Loading branch information
prigorus committed Jul 20, 2024
1 parent 8022a19 commit 82f6c5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/openmower/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

STEP_USER_DATA_SCHEMA = vol.Schema(
{
vol.Required(CONF_PREFIX, default="openmower"): str,
vol.Optional(CONF_PREFIX, default="openmower"): str,
vol.Optional(CONF_LATITUDE): float,
vol.Optional(CONF_LONGITUDE): float,
}
Expand Down

0 comments on commit 82f6c5c

Please sign in to comment.