## Summary
- Add length check before slicing `article.Content[:32]` in `sites/archive/cmd/archive/main.go`, preventing panic when content is shorter than 32 characters
- Follows the same safe truncation pattern already used in `cmd/browser/main.go`
## Test plan
- [x] `go build ./...` passes
- [x] `go test ./...` passes
- [ ] Verify archive cmd handles empty/short content without panic
Closes #9
**Parent:** #31 (Phase 1, PR 3)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Add length check before slicing article.Content[:32], matching the
safe truncation pattern already used in cmd/browser/main.go.
Closes#9
Co-Authored-By: Claude Opus 4.6 <[email protected]>
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Summary
article.Content[:32]insites/archive/cmd/archive/main.go, preventing panic when content is shorter than 32 characterscmd/browser/main.goTest plan
go build ./...passesgo test ./...passesCloses #9
Parent: #31 (Phase 1, PR 3)
🤖 Generated with Claude Code