Skip to content

Commit

Permalink
fix bug for elements default implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
erohmensing committed Aug 26, 2019
1 parent 9a75a8b commit cc182d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rasa/core/channels/channel.py
Expand Up @@ -249,7 +249,7 @@ async def send_elements(
title=element.get("title", ""), subtitle=element.get("subtitle", "")
)
await self.send_text_with_buttons(
recipient_id, element_msg, element.get("buttons", [], **kwargs)
recipient_id, element_msg, element.get("buttons", []), **kwargs
)

async def send_custom_json(
Expand Down

0 comments on commit cc182d3

Please sign in to comment.