fixed unsupported start tag on Telegram notification; refs #565

This commit is contained in:
Chris Caron 2022-04-20 16:13:40 -04:00
parent 32e2a79dd0
commit fee93c1cae

View File

@ -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,
)