feat(feishu): make reaction emoji configurable

Replace hardcoded THUMBSUP with configurable react_emoji field
in FeishuConfig, consistent with SlackConfig.react_emoji pattern.

Default remains THUMBSUP for backward compatibility.
This commit is contained in:
kimkitsuragi26
2026-02-27 11:45:44 +08:00
parent cc425102ac
commit 6641bad337
2 changed files with 2 additions and 1 deletions

View File

@@ -692,7 +692,7 @@ class FeishuChannel(BaseChannel):
msg_type = message.message_type
# Add reaction
await self._add_reaction(message_id, "THUMBSUP")
await self._add_reaction(message_id, self.config.react_emoji)
# Parse content
content_parts = []