chatccc 0.2.148 → 0.2.149

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/session.ts +10 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chatccc",
3
- "version": "0.2.148",
3
+ "version": "0.2.149",
4
4
  "description": "Feishu bot bridge for Claude Code",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
package/src/session.ts CHANGED
@@ -1487,8 +1487,11 @@ export function startUnifiedDisplayLoop(): void {
1487
1487
  await p.cardUpdate(display.cardId, deltaCard, mySeq);
1488
1488
  display.sequence = mySeq;
1489
1489
  } catch (err) {
1490
- console.error(`[${ts()}] CardKit update error: chatId=${chatId} ${(err as Error).message}`);
1491
- if (!display.streamErrorNotified) {
1490
+ const errMsg = (err as Error).message;
1491
+ console.error(`[${ts()}] CardKit update error: chatId=${chatId} ${errMsg}`);
1492
+ if (errMsg.includes("300317")) {
1493
+ display.sequence = mySeq;
1494
+ } else if (!display.streamErrorNotified) {
1492
1495
  display.streamErrorNotified = true;
1493
1496
  p.sendText(chatId, "卡片更新失败,结果将以文本形式发送。").catch(() => {});
1494
1497
  }
@@ -1513,8 +1516,11 @@ export function startUnifiedDisplayLoop(): void {
1513
1516
  await p.cardUpdate(display.cardId, card, mySeq);
1514
1517
  display.sequence = mySeq;
1515
1518
  } catch (err) {
1516
- console.error(`[${ts()}] CardKit update error: chatId=${chatId} ${(err as Error).message}`);
1517
- if (!display.streamErrorNotified) {
1519
+ const errMsg = (err as Error).message;
1520
+ console.error(`[${ts()}] CardKit update error: chatId=${chatId} ${errMsg}`);
1521
+ if (errMsg.includes("300317")) {
1522
+ display.sequence = mySeq;
1523
+ } else if (!display.streamErrorNotified) {
1518
1524
  display.streamErrorNotified = true;
1519
1525
  p.sendText(chatId, "卡片更新失败,结果将以文本形式发送。").catch(() => {});
1520
1526
  }