mirror of
https://github.com/complexcaresolutions/telegram-media-bot.git
synced 2026-03-17 18:33:43 +00:00
fix: remove unnecessary backslash before em-dash in tenant list, verbose health check logging
This commit is contained in:
parent
dc2179a4d6
commit
7d78cbb208
1 changed files with 1 additions and 1 deletions
|
|
@ -205,7 +205,7 @@ async function processAlbum(
|
|||
async function buildAnleitung(): Promise<string> {
|
||||
const tenants = await getTenantList();
|
||||
const tenantList = tenants
|
||||
.map((t) => ` \`${t.id}\` \\— ${escapeMarkdown(t.name)}`)
|
||||
.map((t) => ` \`${t.id}\` — ${escapeMarkdown(t.name)}`)
|
||||
.join('\n');
|
||||
|
||||
return (
|
||||
|
|
|
|||
Loading…
Reference in a new issue