Replace 3 dots with ellipsis to save space
This commit is contained in:
parent
f6c19abad6
commit
a47ad74619
|
@ -63,7 +63,7 @@ class TelegramBot(Bot):
|
|||
tb = Telegram(user.get_telegram_credentials())
|
||||
text = report.text
|
||||
if len(text) > 4096:
|
||||
text = text[:4096 - 4] + u' ...'
|
||||
text = text[:4096 - 2] + " \N{Horizontal ellipsis}"
|
||||
try:
|
||||
for subscriber_id in user.get_telegram_subscribers():
|
||||
tb.send_message(subscriber_id, text).wait()
|
||||
|
|
Loading…
Reference in a new issue