fix issue with conversations hanging

pull/277/head
Dax Raad 2025-06-20 15:49:49 -04:00
parent 61160dc220
commit b72e17a8b7
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ export namespace SystemPrompt {
.text()
.catch(() => ""),
)
return Promise.all(found).then(Boolean)
return Promise.all(found).then((result) => result.filter(Boolean))
}
export function summarize(providerID: string) {