diff --git a/source/notify.ts b/source/notify.ts index 672a28a..7959c36 100644 --- a/source/notify.ts +++ b/source/notify.ts @@ -22,7 +22,7 @@ export const menu = new MenuTemplate(ctx => { text += '\n\n'; text += format.bold('Deine Regeln'); text += '\n'; - text += rules.map(rule => notifyRules.asHTML(rule)).sort().join('\n'); + text += rules.map(rule => '- ' + notifyRules.asHTML(rule)).sort().join('\n'); } return {text, parse_mode: format.parse_mode};