Fix build: don't strip fe0f and 200d codes

This commit is contained in:
octospacc 2022-09-09 23:37:37 +02:00
parent 799a79d06c
commit 5c4b5d25db
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ def GetEmojiMeta(Line):
Line = Line.lower()
Code = Line.split(";")[0].rstrip(" ")
Code = ReplaceList(Code, ["fe0f","200d"], "")
# Code = ReplaceList(Code, ["fe0f","200d"], "")
Code = Code.replace(" ", " ")
Code = ReplaceList(Code, [" ","--"], "-")
Code = Code.removesuffix("-")