浏览代码

fix: #1668 should not summarize twice

Yidadaa 1 年之前
父节点
当前提交
58f726c602
共有 1 个文件被更改,包括 0 次插入1 次删除
  1. 0 1
      app/client/controller.ts

+ 0 - 1
app/client/controller.ts

@@ -28,7 +28,6 @@ export const ChatControllerPool = {
 
   remove(sessionIndex: number, messageId: number) {
     const key = this.key(sessionIndex, messageId);
-    this.controllers[key]?.abort();
     delete this.controllers[key];
   },