fix: Use correct beads paths for molecule and statusline

- molecule.go: Use findLocalBeadsDir() for project-level beads
- statusline.go: Use findMailWorkDir() for mail count (town beads)

Part of two-level beads architecture cleanup.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Steve Yegge
2025-12-20 18:30:45 -08:00
parent c16324b713
commit 5f206348a5
2 changed files with 6 additions and 6 deletions

View File

@@ -133,7 +133,7 @@ func runMayorStatusLine(t *tmux.Tmux) error {
// Fast path - returns 0 on any error.
func getUnreadMailCount(identity string) int {
// Find workspace
workDir, err := findBeadsWorkDir()
workDir, err := findMailWorkDir()
if err != nil {
return 0
}