Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Session stuck at "waiting" status after user interrupts/escapes a permission prompt
- Agent team sessions showing idle/running instead of waiting when sub-agent needs approval
- Status oscillating between idle and finished when stale waiting hook is present
- Temp file not cleaned up when bug report body write fails

## [1.1.0] - 2026-03-21

Expand Down
2 changes: 1 addition & 1 deletion internal/ui/bugreport.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +130,12 @@ func (d *BugReportDialog) openGitHubIssue(description string) tea.Cmd {
debuglog.Logger.Error("bug report: failed to create temp file", "err", err)
return bugReportOpenErrMsg{err: err}
}
defer os.Remove(tmpFile.Name())
if _, err := tmpFile.WriteString(body); err != nil {
tmpFile.Close()
return bugReportOpenErrMsg{err: err}
}
tmpFile.Close()
defer os.Remove(tmpFile.Name())

// Create issue via API (no URL length limit), then open in browser.
cmd := exec.Command("gh", "issue", "create",
Expand Down
Loading