From da35631f2d3fd84a325de2b7d654ce0bd109c161 Mon Sep 17 00:00:00 2001 From: sigil-03 Date: Wed, 9 Jul 2025 12:51:39 -0600 Subject: [PATCH] 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 --- src/bin/ent/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/ent/main.rs b/src/bin/ent/main.rs index 2892d6a..6fb30c9 100644 --- a/src/bin/ent/main.rs +++ b/src/bin/ent/main.rs @@ -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), -- 2.47.3