We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2594916 commit 1d8161fCopy full SHA for 1d8161f
supervisor/zero_manager.py
@@ -88,8 +88,8 @@ def start(self, ip_address: str) -> bool:
88
# Merge properties and add zigbee2mqtt port if service is running
89
properties: Dict[str, str] = dict(self._properties)
90
try:
91
- if util.is_service_running("zigbee2mqtt.service"):
92
- properties["zigbee2mqtt_port"] = "8099"
+ if util.is_service_enabled("zigbee2mqtt.service"):
+ properties["z2m_port"] = "8099"
93
except Exception as e:
94
logger.warning(f"Failed checking zigbee2mqtt service status: {e}")
95
0 commit comments