Just setup telegram_bot component and I’m receiving
2017-05-31 11:43:56 ERROR (MainThread) [aiohttp.server] Error handling request
Traceback (most recent call last):
File "/usr/local/lib/python3.6/site-packages/aiohttp/web_protocol.py", line 417, in start
resp = yield from self._request_handler(request)
File "/usr/local/lib/python3.6/site-packages/aiohttp/web.py", line 289, in _handle
resp = yield from handler(request)
File "/usr/local/lib/python3.6/asyncio/coroutines.py", line 213, in coro
res = yield from res
File "/usr/local/lib/python3.6/asyncio/coroutines.py", line 213, in coro
res = yield from res
File "/usr/src/app/homeassistant/components/http/ban.py", line 58, in ban_middleware_handler
return (yield from handler(request))
File "/usr/src/app/homeassistant/components/http/__init__.py", line 424, in handle
result = yield from result
File "/usr/src/app/homeassistant/components/telegram_bot/webhooks.py", line 86, in post
if not self.process_message(data):
File "/usr/src/app/homeassistant/components/telegram_bot/__init__.py", line 538, in process_message
message_ok, event_data = self._get_message_data(data)
File "/usr/src/app/homeassistant/components/telegram_bot/__init__.py", line 495, in _get_message_data
or msg_data['chat'].get('id') not in self.allowed_chat_ids:
KeyError: 'chat'
Any ideas as to what would be causing this?