From ebfb380449c8c0fe52cb10f2f418a88e61c755cf Mon Sep 17 00:00:00 2001 From: "Craig J. Ward" Date: Tue, 30 Jan 2018 20:46:47 -0600 Subject: [PATCH] fix event channel name (#12077) --- homeassistant/components/goalfeed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/goalfeed.py b/homeassistant/components/goalfeed.py index d31a0b5b51a..5f9985fd38d 100644 --- a/homeassistant/components/goalfeed.py +++ b/homeassistant/components/goalfeed.py @@ -51,7 +51,7 @@ def setup(hass, config): timeout=30).json() channel = pusher.subscribe('private-goals', resp['auth']) - channel.bind('goalfeed_goal', goal_handler) + channel.bind('goal', goal_handler) pusher = pysher.Pusher(GOALFEED_APP_ID, secure=False, port=8080, custom_host=GOALFEED_HOST, timeout=30)