Merge pull request 'Fix #51. Using another symbol for cut text to avoid HTML parsing error in Telegram API.' (#52) from fix_51 into master
All checks were successful
continuous-integration/drone/push Build is passing

Reviewed-on: #52
Reviewed-by: Miroslavsckaya <miroslavsckaya@noreply.git.skobk.in>
This commit is contained in:
Miroslavsckaya 2023-07-03 06:37:11 +00:00
commit 960cee77e9

View file

@ -177,7 +177,7 @@ class Notifier:
sanitized_description = self.__sanitize_html(item.description)
if len(sanitized_description) > (self.MESSAGE_LENGTH_LIMIT - len(header)):
cut = '<...>'
cut = '[...]'
trim_index = self.MESSAGE_LENGTH_LIMIT - len(header) - len(cut) - 1
sanitized_description = sanitized_description[:trim_index] + cut