We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da28041 commit 58719dbCopy full SHA for 58719db
2 files changed
.gitignore
@@ -24,3 +24,4 @@ output/
24
examples/1D-ARC/
25
examples/data/
26
site/
27
+.cache/
src/cax/utils/emoji.py
@@ -40,6 +40,6 @@ def get_emoji(emoji: str) -> Image:
40
"""
41
# Get the emoji image
42
code = hex(ord(emoji))[2:].lower()
43
- url = f"https://github.com/googlefonts/noto-emoji/blob/main/png/128/emoji_u{code}.png?raw=true"
+ url = f"https://raw.githubusercontent.com/googlefonts/noto-emoji/refs/heads/main/png/128/emoji_u{code}.png"
44
image_pil = get_image_from_url(url)
45
return image_pil
0 commit comments