mirror of https://github.com/caronc/apprise
fixed unsupported start tag on Telegram notification; refs #565
parent
32e2a79dd0
commit
fee93c1cae
|
@ -620,7 +620,7 @@ class NotifyTelegram(NotifyBase):
|
||||||
|
|
||||||
# prepare our payload based on HTML or TEXT
|
# prepare our payload based on HTML or TEXT
|
||||||
payload['text'] = '{}{}'.format(
|
payload['text'] = '{}{}'.format(
|
||||||
'<h1>{}</h1>'.format(title) if title else '',
|
'<b>{}</b>\r\n'.format(title) if title else '',
|
||||||
body,
|
body,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue