mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-07-09 13:26:41 +02:00
fix: added emojis in the list command that change based on the .to_emoji() function instead of being hardcoded in case of further changes to emojis.
This commit is contained in:
parent
474dea6beb
commit
c8da248e0c
1 changed files with 4 additions and 2 deletions
|
@ -1319,10 +1319,12 @@ impl Service {
|
||||||
RoomMessageEventContent::text_plain(format!(
|
RoomMessageEventContent::text_plain(format!(
|
||||||
"
|
"
|
||||||
List of services: \n
|
List of services: \n
|
||||||
❎ = blocked\n
|
{} = blocked\n
|
||||||
✅ = allowed\n
|
{} = allowed\n
|
||||||
{}
|
{}
|
||||||
",
|
",
|
||||||
|
AclMode::Block.to_emoji(),
|
||||||
|
AclMode::Allow.to_emoji(),
|
||||||
results_html
|
results_html
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue