docs(feishu): document message recall event and log recall on websocket

This commit is contained in:
zhayujie
2026-07-20 11:41:56 +08:00
parent ea0c90f4ea
commit 3cdc13d69d
4 changed files with 4 additions and 3 deletions

View File

@@ -394,6 +394,7 @@ class FeiShuChanel(ChatChannel):
) -> None:
"""Cancel only the task created by the recalled Feishu message."""
try:
logger.info("[FeiShu] websocket received message recall event")
event_dict = json.loads(lark.JSON.marshal(data))
self._handle_message_recalled_event(event_dict.get("event", {}))
except Exception as e: