fix for session stuck in "Working..."

This commit is contained in:
Dax Raad
2025-08-14 12:20:22 -04:00
parent 703ae49675
commit 796bc390db
4 changed files with 24 additions and 1 deletions
+1 -1
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 {