update right-speech-bubble to use left-speech-bubble

right-speech-bubble is not part of the recommended unicode
emoji presentation set, but left-speech-bubble is and therefore, it's
more commonly supported
This commit is contained in:
sigil-03 2025-07-09 12:51:39 -06:00
parent df7b5c6aa4
commit da35631f2d

View file

@ -120,7 +120,7 @@ fn handle_command(args: &Args, issues_dir: &std::path::Path) -> anyhow::Result<(
let issue = issues.issues.get(*uuid).unwrap();
let comments = match issue.comments.len() {
0 => String::from(" "),
n => format!("🗩 {}", n),
n => format!("🗨️ {}", n),
};
let assignee = match &issue.assignee {
Some(assignee) => format!(" (👉 {})", assignee),