huskies: merge 946

This commit is contained in:
dave
2026-05-13 07:54:50 +00:00
parent 4a0fbcaa95
commit a7840ea4b0
49 changed files with 378 additions and 314 deletions
+1 -1
View File
@@ -110,7 +110,7 @@ fn find_story_merge_commit(root: &std::path::Path, num_str: &str) -> Option<Stri
/// (story 929 — CRDT is the sole source of story metadata).
fn find_story_name(root: &std::path::Path, num_str: &str) -> Option<String> {
let (story_id, _, _, _) = crate::chat::lookup::find_story_by_number(root, num_str)?;
crate::crdt_state::read_item(&story_id).and_then(|w| w.name().map(str::to_string))
crate::crdt_state::read_item(&story_id).map(|w| w.name().to_string())
}
/// Return the `git show --stat` output for a commit.