mqtt_statestream: Update to append 'state' to topic for future use with mqtt discovery (#9446)

This commit is contained in:
Matt White
2017-09-16 00:05:58 -06:00
committed by Paulus Schoutsen
parent a7bce5f9e6
commit 04bed51277
2 changed files with 4 additions and 4 deletions

View File

@@ -38,7 +38,7 @@ def async_setup(hass, config):
return
payload = new_state.state
topic = base_topic + entity_id.replace('.', '/')
topic = base_topic + entity_id.replace('.', '/') + '/state'
hass.components.mqtt.async_publish(topic, payload, 1, True)
async_track_state_change(hass, MATCH_ALL, _state_publisher)