mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 05:07:41 +00:00
Fix hangout.send_message requiring data key (#17393)
This commit is contained in:
parent
220054a6c3
commit
f92b392a24
@ -304,7 +304,7 @@ class HangoutsBot:
|
|||||||
"""Handle the send_message service."""
|
"""Handle the send_message service."""
|
||||||
await self._async_send_message(service.data[ATTR_MESSAGE],
|
await self._async_send_message(service.data[ATTR_MESSAGE],
|
||||||
service.data[ATTR_TARGET],
|
service.data[ATTR_TARGET],
|
||||||
service.data[ATTR_DATA])
|
service.data.get(ATTR_DATA, {}))
|
||||||
|
|
||||||
async def async_handle_update_users_and_conversations(self, _=None):
|
async def async_handle_update_users_and_conversations(self, _=None):
|
||||||
"""Handle the update_users_and_conversations service."""
|
"""Handle the update_users_and_conversations service."""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user