Fix todo list toggle not working (#6103)

This commit is contained in:
Christiaan Arnoldus 2025-07-23 14:39:27 +02:00 committed by GitHub
parent 9956cc1f48
commit 1c26bbc5ab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1626,6 +1626,7 @@ export class Task extends EventEmitter<ClineEvents> {
language,
maxConcurrentFileReads,
maxReadFileLine,
apiConfiguration,
} = state ?? {}
return await (async () => {
@ -1654,6 +1655,7 @@ export class Task extends EventEmitter<ClineEvents> {
maxReadFileLine !== -1,
{
maxConcurrentFileReads,
todoListEnabled: apiConfiguration?.todoListEnabled,
},
)
})()