Add missing argument

This commit is contained in:
Andrew Ferrazzutti 2022-04-06 14:16:12 -04:00
parent 26d212fd45
commit f682edb719
1 changed files with 1 additions and 1 deletions

View File

@ -1098,7 +1098,7 @@ class Portal(DBPortal, BasePortal):
message_text: str,
**_
) -> list[EventID]:
content = await kakaotalk_to_matrix(message_text)
content = await kakaotalk_to_matrix(message_text, attachment.mentions)
await self._add_remote_reply(content, attachment)
return [await self._send_message(intent, content, timestamp=timestamp)]