Disable markdown in sed

master
Dan Elkouby 2019-04-27 10:22:36 +00:00
parent ca5619b9cc
commit c2197e5280
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ async def on_regex(event):
if m is not None: if m is not None:
s = f"{HEADER}{s}" s = f"{HEADER}{s}"
out = await borg.send_message( out = await borg.send_message(
await event.get_input_chat(), s, reply_to=m.id await event.get_input_chat(), s, reply_to=m.id, parse_mode=None
) )
last_msgs[chat_id].appendleft(out) last_msgs[chat_id].appendleft(out)
elif s is not None: elif s is not None: