From fee93c1caecb39f08ca91ae8e0b0445e421a7163 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Wed, 20 Apr 2022 16:13:40 -0400 Subject: [PATCH] fixed unsupported start tag on Telegram notification; refs #565 --- apprise/plugins/NotifyTelegram.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apprise/plugins/NotifyTelegram.py b/apprise/plugins/NotifyTelegram.py index e9098ee8..8c1832a4 100644 --- a/apprise/plugins/NotifyTelegram.py +++ b/apprise/plugins/NotifyTelegram.py @@ -620,7 +620,7 @@ class NotifyTelegram(NotifyBase): # prepare our payload based on HTML or TEXT payload['text'] = '{}{}'.format( - '

{}

'.format(title) if title else '', + '{}\r\n'.format(title) if title else '', body, )