mirror of
https://github.com/miloszowi/everyone-mention-telegram-bot.git
synced 2025-05-20 09:14:07 +00:00
0.3.2 - fixed a bug with missing + in replier
This commit is contained in:
parent
e242584974
commit
e44f4b75a5
@ -1,6 +1,9 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## [0.3.2] - 28.02.2023
|
||||||
|
### Changed
|
||||||
|
- fixed bug with missing '+' in replier
|
||||||
## [0.3.1] - 28.02.2023
|
## [0.3.1] - 28.02.2023
|
||||||
### Changed
|
### Changed
|
||||||
- fixed markdown replier to respect restricted characters provided in the [api docs](https://core.telegram.org/bots/api#markdownv2-style)
|
- fixed markdown replier to respect restricted characters provided in the [api docs](https://core.telegram.org/bots/api#markdownv2-style)
|
||||||
|
@ -27,7 +27,7 @@ class Replier:
|
|||||||
try:
|
try:
|
||||||
update.effective_message.reply_markdown_v2(message, reply_markup=reply_markup)
|
update.effective_message.reply_markdown_v2(message, reply_markup=reply_markup)
|
||||||
except Exception as err:
|
except Exception as err:
|
||||||
Logger.error("replier.markdown error: "str(err))
|
Logger.error("replier.markdown error: " + str(err))
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def html(update: Update, html: str, reply_markup: Optional[InlineKeyboardMarkup] = None) -> None:
|
def html(update: Update, html: str, reply_markup: Optional[InlineKeyboardMarkup] = None) -> None:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user