Fix support for multi-codepoints emoji
This commit is contained in:
parent
0175f21273
commit
6e3066bd9b
1 changed files with 1 additions and 1 deletions
|
@ -379,7 +379,7 @@ def _html2text(content: str) -> str:
|
||||||
|
|
||||||
|
|
||||||
def _replace_emoji(u: str, _) -> str:
|
def _replace_emoji(u: str, _) -> str:
|
||||||
filename = hex(ord(u))[2:]
|
filename = "-".join(hex(ord(c))[2:] for c in u)
|
||||||
return config.EMOJI_TPL.format(filename=filename, raw=u)
|
return config.EMOJI_TPL.format(filename=filename, raw=u)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue