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)