@milerliu/feishu 0.1.8 → 0.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/reply-dispatcher.ts +2 -2
package/package.json
CHANGED
package/src/reply-dispatcher.ts
CHANGED
|
@@ -118,8 +118,8 @@ export function createFeishuReplyDispatcher(params: CreateFeishuReplyDispatcherP
|
|
|
118
118
|
// Only include @mentions in the first chunk (avoid duplicate @s)
|
|
119
119
|
let isFirstChunk = true;
|
|
120
120
|
|
|
121
|
-
// Streaming mode: use streaming card for
|
|
122
|
-
if (streamingEnabled
|
|
121
|
+
// Streaming mode: use streaming card for all messages (regardless of content type)
|
|
122
|
+
if (streamingEnabled) {
|
|
123
123
|
params.runtime.log?.(`feishu deliver: using streaming mode for text (${text.length} chars)`);
|
|
124
124
|
await sendStreamingMessageFeishu({
|
|
125
125
|
cfg,
|