Browse Source

fix: #1668 should not summarize twice

Yidadaa 1 year ago
parent
commit
58f726c602
1 changed files with 0 additions and 1 deletions
  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];
   },