empty-descriptions-and-dropped-worktrees #15

Merged
seb merged 10 commits from empty-descriptions-and-dropped-worktrees into main 2025-07-10 09:48:22 -06:00
Showing only changes of commit acf539c683 - Show all commits

View file

@ -234,12 +234,20 @@ fn handle_command(args: &Args, issues_dir: &std::path::Path) -> anyhow::Result<(
return Err(anyhow::anyhow!("issue {} not found", issue_id)); return Err(anyhow::anyhow!("issue {} not found", issue_id));
}; };
let mut comment = issue.new_comment()?; let mut comment = issue.new_comment()?;
match description { let r = match description {
Some(description) => { Some(description) => comment.set_description(description),
comment.set_description(description)?; None => comment.edit_description(),
};
match r {
Err(entomologist::comment::CommentError::EmptyDescription) => {
println!("aborted new comment");
return Ok(());
} }
None => { Err(e) => {
comment.edit_description()?; return Err(e.into());
}
Ok(()) => {
println!("created new comment {}", &comment.uuid);
} }
} }
} }