forked from indymedia/epicyon
Check for colon in display name
parent
d2344663f6
commit
7dd794b531
BIN
emoji/ubuntu.png
BIN
emoji/ubuntu.png
Binary file not shown.
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 17 KiB |
|
@ -1743,6 +1743,7 @@ def individualPostAsHtml(iconsDir: str,translate: {}, \
|
|||
|
||||
displayName=getDisplayName(postJsonObject['actor'],personCache)
|
||||
if displayName:
|
||||
if ':' in displayName:
|
||||
displayName= \
|
||||
addHtmlTags(baseDir,httpPrefix, \
|
||||
nickname,domain,displayName,[],{})
|
||||
|
@ -1868,6 +1869,7 @@ def individualPostAsHtml(iconsDir: str,translate: {}, \
|
|||
if avatarUrl2:
|
||||
avatarUrl=avatarUrl2
|
||||
if displayName:
|
||||
if ':' in displayName:
|
||||
displayName= \
|
||||
addHtmlTags(baseDir,httpPrefix, \
|
||||
nickname,domain,displayName,[],{})
|
||||
|
|
Loading…
Reference in New Issue