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
@@ -146,7 +146,7 @@ fn find_story_name(_root: &std::path::Path, num_str: &str) -> Option<String> {
let items = crate::crdt_state::read_all_items()?;
for item in items {
if item.story_id().split('_').next().unwrap_or("") == num_str {
return item.name().map(str::to_string);
return Some(item.name().to_string());
}
}
None