Don't show display name and handle

merge-requests/30/head
Bob Mottram 2021-01-12 10:23:25 +00:00
parent b57a8107ed
commit 2e62af9a88
1 changed files with 4 additions and 3 deletions

View File

@ -1532,8 +1532,6 @@ def _individualFollowAsHtml(translate: {},
followUrlDomain, followUrlPort = getDomainFromActor(followUrl)
followUrlDomainFull = getFullDomain(followUrlDomain, followUrlPort)
titleStr = '@' + followUrlNickname + '@' + followUrlDomainFull
if dormant:
titleStr += ' 💤'
avatarUrl = getPersonAvatarUrl(baseDir, followUrl, personCache, True)
if not avatarUrl:
avatarUrl = followUrl + '/avatar.png'
@ -1555,7 +1553,10 @@ def _individualFollowAsHtml(translate: {},
if avatarUrl2:
avatarUrl = avatarUrl2
if displayName:
titleStr = displayName + ' ' + titleStr
titleStr = displayName
if dormant:
titleStr += ' 💤'
buttonsStr = ''
if authorized: