Remove replaced emoji tags

main
Bob Mottram 2020-02-21 15:17:55 +00:00
parent 2361a6d8fd
commit 1d642e0d40
1 changed files with 14 additions and 2 deletions

View File

@ -533,7 +533,19 @@ def createPostBase(baseDir: str,nickname: str,domain: str,port: int, \
nickname,domain,content, \
mentionedRecipients, \
hashtagsDict,True)
content=replaceEmojiFromTags(content,mentionedRecipients,'content')
# replace emoji with unicode
tags=[]
for tagName,tag in hashtagsDict.items():
tags.append(tag)
# get list of tags
content=replaceEmojiFromTags(content,tags,'content')
# remove replaced emoji
for tagName,tag in hashtagsDict.items():
if tag.get('name'):
if tag['name'].startswith(':'):
if tag['name'] not in content:
del hashtagsDict[tagName]
statusNumber,published = getStatusNumber()
postTo='https://www.w3.org/ns/activitystreams#Public'