huskies: merge 946
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user