diff --git a/post_parser.py b/post_parser.py index 87f10a5..bfbafb3 100644 --- a/post_parser.py +++ b/post_parser.py @@ -409,7 +409,7 @@ class PostParser: text = text.replace('\n', '
') # Replace newlines with
text = self._add_hyperlinks_to_raw_urls(text) if text: # Message text - content_body.append(f'
{text}
') + content_body.append(f'
{text}

') if poll := getattr(message, "poll", None): # Poll message if poll_html := self._format_poll(poll):