mirror of
https://github.com/sst/opencode.git
synced 2025-08-31 18:27:22 +00:00
fix issue with conversations hanging
This commit is contained in:
parent
61160dc220
commit
b72e17a8b7
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue