Skip to content

Commit 3e4d9b0

Browse files
committed
Possibly fix emoji problem
1 parent a0e580c commit 3e4d9b0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

core/config.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ class ConfigManager:
4747
# updates
4848
"update_notifications": True,
4949
# threads
50-
"sent_emoji": "",
51-
"blocked_emoji": "🚫",
52-
"close_emoji": "🔒",
50+
"sent_emoji": "\N{WHITE HEAVY CHECK MARK}",
51+
"blocked_emoji": "\N{NO ENTRY SIGN}",
52+
"close_emoji": "\N{LOCK}",
5353
"use_user_id_channel_name": False,
5454
"recipient_thread_close": False,
5555
"thread_auto_close_silently": False,
@@ -93,13 +93,13 @@ class ConfigManager:
9393
"anon_tag": "Response",
9494
# react to contact
9595
"react_to_contact_message": None,
96-
"react_to_contact_emoji": "\u2705",
96+
"react_to_contact_emoji": "\N{WHITE HEAVY CHECK MARK}",
9797
# confirm thread creation
9898
"confirm_thread_creation": False,
9999
"confirm_thread_creation_title": "Confirm thread creation",
100100
"confirm_thread_response": "React to confirm thread creation which will directly contact the moderators",
101-
"confirm_thread_creation_accept": "\u2705",
102-
"confirm_thread_creation_deny": "\U0001F6AB",
101+
"confirm_thread_creation_accept": "\N{WHITE HEAVY CHECK MARK}",
102+
"confirm_thread_creation_deny": "\N{NO ENTRY SIGN}",
103103
# regex
104104
"use_regex_autotrigger": False,
105105
}

0 commit comments

Comments
 (0)