forked from indymedia/epicyon
Show DM icon in inbox timeline
parent
1426fdb5d7
commit
47e70a0fdf
|
@ -1093,9 +1093,11 @@ def individualPostAsHtml(baseDir: str, \
|
|||
""" Shows a single post as html
|
||||
"""
|
||||
# If this is the inbox timeline then don't show the repeat icon on any DMs
|
||||
showDMicon=False
|
||||
if showRepeats:
|
||||
if isDM(postJsonObject):
|
||||
showRepeats=False
|
||||
showDMicon=True
|
||||
|
||||
titleStr=''
|
||||
isAnnounced=False
|
||||
|
@ -1166,6 +1168,10 @@ def individualPostAsHtml(baseDir: str, \
|
|||
else:
|
||||
titleStr+='<a href="'+messageId+'">@'+actorNickname+'@'+actorDomain+'</a>'
|
||||
|
||||
# Show a DM icon for DMs in the inbox timeline
|
||||
if showDMicon:
|
||||
titleStr='<img src="/icons/scope_dm.png" class="announceOrReply"/>'+titleStr
|
||||
|
||||
if showRepeats:
|
||||
if isAnnounced:
|
||||
if postJsonObject['object'].get('attributedTo'):
|
||||
|
|
Loading…
Reference in New Issue