Skip to content
This repository was archived by the owner on Sep 20, 2023. It is now read-only.

Fix telegram emoji #27

Merged
merged 2 commits into from
May 13, 2021
Merged
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
6 changes: 3 additions & 3 deletions telegram_handler/formatters.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ def formatException(self, *args, **kwargs):


class EMOJI:
WHITE_CIRCLE = '\xE2\x9A\xAA'
BLUE_CIRCLE = '\xF0\x9F\x94\xB5'
RED_CIRCLE = '\xF0\x9F\x94\xB4'
WHITE_CIRCLE = '\U000026AA'
BLUE_CIRCLE = '\U0001F535'
RED_CIRCLE = '\U0001F534'


class HtmlFormatter(TelegramFormatter):
Expand Down