Provide conv_id to intent (#68102)

This commit is contained in:
Cyril Perrin
2022-03-30 21:24:36 +02:00
committed by GitHub
parent 1be9dc9720
commit fb1b0b535f

View File

@@ -194,7 +194,11 @@ class HangoutsBot:
return await self.hass.helpers.intent.async_handle(
DOMAIN,
intent_type,
{key: {"value": value} for key, value in match.groupdict().items()},
{"conv_id": {"value": conv_id}}
| {
key: {"value": value}
for key, value in match.groupdict().items()
},
text,
)