remove # from internal room ID list

internal room IDs do not have #, they start with !

Signed-off-by: strawberry <june@girlboss.ceo>
This commit is contained in:
strawberry 2023-11-27 01:35:30 -05:00
parent e2ec2a98ba
commit b06ed1b92f
1 changed files with 2 additions and 2 deletions

View File

@ -944,7 +944,7 @@ impl Service {
|mut output, (alias, id)| {
writeln!(
output,
"- `#{}` -> #{}:{}",
"- `{}` -> #{}:{}",
alias, id, server_name
)
.unwrap();
@ -957,7 +957,7 @@ impl Service {
|mut output, (alias, id)| {
writeln!(
output,
"<li><code>#{}</code> -> #{}:{}</li>",
"<li><code>{}</code> -> #{}:{}</li>",
escape_html(alias.as_ref()),
escape_html(id.as_ref()),
server_name