diff --git a/leggen/notifications/telegram.py b/leggen/notifications/telegram.py index 3b03855..07c7364 100644 --- a/leggen/notifications/telegram.py +++ b/leggen/notifications/telegram.py @@ -12,6 +12,8 @@ def escape_markdown(text: str) -> str: .replace(".", "\\.") .replace("$", "\\$") .replace("+", "\\+") + .replace("(", "\\(") + .replace(")", "\\)") )