Skip to content

Commit

Permalink
- disable parse mode
Browse files Browse the repository at this point in the history
  • Loading branch information
athphane committed Jun 4, 2024
1 parent 7214dc0 commit da8c466
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion userbot/plugins/morse_code.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def encrypt(input_string):
await message.edit("`give me something to encrypt`")
return

await message.edit(encrypt(input_str.upper().replace(' ', '-')))
await message.edit(encrypt(input_str.upper().replace(' ', '-')), parse_mode=None)


@UserBot.on_message(filters.command("morsed", ".") & filters.me)
Expand Down

0 comments on commit da8c466

Please sign in to comment.