소스 검색

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];
   },