Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion bot/telegram_bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -1020,7 +1020,9 @@ def notify_all(update, context):
]
reply_markup = InlineKeyboardMarkup(keyboard)
update.message.reply_text(
f"Preview:\n{new_feature_message}", reply_markup=reply_markup
f"Preview:\n{new_feature_message}",
reply_markup=reply_markup,
parse_mode=ParseMode.HTML,
)
else:
update.message.reply_text("You are not authorized to use this command.")
Expand Down
4 changes: 4 additions & 0 deletions release_notes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Release Notes
## Version 2.3.5 - Date 3 May 2024
### For Developer 🧑‍💻
- Add parse html for /notifyall command to send message with html tags

## Version 2.3.4 - Date 3 May 2024
### Enhancement 🔥
- Added FAQ section
Expand Down