fix: reply format
All checks were successful
Build / Build (push) Successful in 45s
Build / docker (push) Successful in 17s

This commit is contained in:
파링 2026-02-04 20:22:28 +09:00
parent baf9cf43d7
commit 0ac8f56ca1
Signed by: paring
SSH key fingerprint: SHA256:8uCHhCpn/gVOLEaTolmbub9kfM6XBxWkIWmHxUZoWWk

View file

@ -24,7 +24,10 @@ pub fn get_message_components(
let mut inner = vec![];
inner.push(CreateContainerComponent::TextDisplay(
CreateTextDisplay::new(lang.to_locale().replied_message(&link.to_string())),
CreateTextDisplay::new(format!(
"-# {}",
lang.to_locale().replied_message(&link.to_string())
)),
));
inner.extend(replied_components.into_iter().filter_map(|x| match x {