Code sequence

merge-requests/6/head
Bob Mottram 2020-02-21 21:11:52 +00:00
parent 29783f7bf4
commit 373c65a103
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ def replaceEmojiFromTags(content: str,tag: [],messageType: str) -> str:
iconCodeSequence=''
for icode in iconCodes:
try:
iconCodeSequence+=chr(int("0x"+iconName,16))
iconCodeSequence+=chr(int("0x"+icode,16))
except:
iconCodeSequence=''
break