fix(feishu): issue where streaming edits in Feishu show extra leading newlines

This commit is contained in:
Lind3ey 2026-04-12 15:46:06 +08:00 committed by Teknium
parent 8f50f2834a
commit 9dba75bc38

View file

@ -1700,6 +1700,7 @@ class FeishuAdapter(BasePlatformAdapter):
if not self._client:
return SendResult(success=False, error="Not connected")
content = self.format_message(content)
try:
msg_type, payload = self._build_outbound_payload(content)
body = self._build_update_message_body(msg_type=msg_type, content=payload)