Skip to content

Commit

Permalink
feat(unicode): bump emojis list to 15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ZRunner committed Feb 13, 2025
1 parent 01ff980 commit 6c68cde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/emojis_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -985,7 +985,7 @@ def __init__(self, bot: "Axobot"):
}

try:
resp = requests.get("https://www.unicode.org/Public/emoji/15.0/emoji-test.txt", timeout=5)
resp = requests.get("https://www.unicode.org/Public/emoji/15.1/emoji-test.txt", timeout=5)
self.unicode_set: set[str] = set()
for line in resp.text.split("\n"):
if match := UNICODE_FILE_LINE_PATTERN.match(line):
Expand Down

0 comments on commit 6c68cde

Please sign in to comment.