Fix support for multi-codepoints emoji

This commit is contained in:
Thomas Sileo 2022-09-01 12:23:23 +02:00
parent 0175f21273
commit 6e3066bd9b
1 changed files with 1 additions and 1 deletions

View File

@ -379,7 +379,7 @@ def _html2text(content: 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)