bd sync: 2025-12-27 15:56:42

This commit is contained in:
Steve Yegge
2025-12-27 15:56:42 -08:00
parent 87f535a65e
commit c8b912cbe6
179 changed files with 3051 additions and 10283 deletions

View File

@@ -72,11 +72,8 @@ func initializeNoDbMode() error {
debug.Logf("using prefix '%s'", prefix)
// Set global store and mark as active (fixes bd comment --no-db)
storeMutex.Lock()
// Set global store
store = memStore
storeActive = true
storeMutex.Unlock()
return nil
}
@@ -221,7 +218,7 @@ func writeIssuesToJSONL(memStore *memory.MemoryStorage, beadsDir string) error {
// Wisps exist only in SQLite and are shared via .beads/redirect, not JSONL.
filtered := make([]*types.Issue, 0, len(issues))
for _, issue := range issues {
if !issue.Ephemeral {
if !issue.Wisp {
filtered = append(filtered, issue)
}
}