fix event channel name (#12077)

pull/12074/head
Craig J. Ward 2018-01-30 20:46:47 -06:00 committed by tschmidty69
parent 3e41422caa
commit ebfb380449
1 changed files with 1 additions and 1 deletions

View File

@ -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)