@ynhcj/xiaoyi-channel 0.0.49-beta → 0.0.50-beta
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/dist/src/bot.js +1 -1
- package/dist/src/reply-dispatcher.js +1 -1
- package/package.json +1 -1
package/dist/src/bot.js
CHANGED
|
@@ -165,7 +165,7 @@ export async function handleXYMessage(params) {
|
|
|
165
165
|
sessionId: parsed.sessionId,
|
|
166
166
|
taskId: parsed.taskId,
|
|
167
167
|
messageId: parsed.messageId,
|
|
168
|
-
text: isSecondMessage ? "新消息已接收,正在处理..." : "
|
|
168
|
+
text: isSecondMessage ? "新消息已接收,正在处理..." : "任务正在处理中,请稍候~",
|
|
169
169
|
state: "working",
|
|
170
170
|
}).catch((err) => {
|
|
171
171
|
error(`Failed to send initial status update:`, err);
|
|
@@ -54,7 +54,7 @@ export function createXYReplyDispatcher(params) {
|
|
|
54
54
|
sessionId,
|
|
55
55
|
taskId: currentTaskId, // 🔑 动态taskId
|
|
56
56
|
messageId: currentMessageId, // 🔑 动态messageId
|
|
57
|
-
text: "
|
|
57
|
+
text: "任务正在处理中,请稍候~",
|
|
58
58
|
state: "working",
|
|
59
59
|
}).catch((err) => {
|
|
60
60
|
error(`Failed to send status update:`, err);
|