Browse Source

fixed unsupported start tag on Telegram notification; refs #565

pull/574/head
Chris Caron 3 years ago
parent
commit
fee93c1cae
  1. 2
      apprise/plugins/NotifyTelegram.py

2
apprise/plugins/NotifyTelegram.py

@ -620,7 +620,7 @@ class NotifyTelegram(NotifyBase):
# prepare our payload based on HTML or TEXT
payload['text'] = '{}{}'.format(
'<h1>{}</h1>'.format(title) if title else '',
'<b>{}</b>\r\n'.format(title) if title else '',
body,
)

Loading…
Cancel
Save