fix for session stuck in "Working..."

This commit is contained in:
Dax Raad
2025-08-13 16:29:07 -04:00
parent 703ae49675
commit 796bc390db
4 changed files with 24 additions and 1 deletions

View File

@@ -631,7 +631,7 @@ func (a *App) IsBusy() bool {
if casted, ok := lastMessage.Info.(opencode.AssistantMessage); ok {
return casted.Time.Completed == 0
}
return true
return false
}
func (a *App) SaveState() tea.Cmd {