diff --git a/webinterface.py b/webinterface.py
index cda928c5..62ae6147 100644
--- a/webinterface.py
+++ b/webinterface.py
@@ -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+='@'+actorNickname+'@'+actorDomain+''
+ # Show a DM icon for DMs in the inbox timeline
+ if showDMicon:
+ titleStr=''+titleStr
+
if showRepeats:
if isAnnounced:
if postJsonObject['object'].get('attributedTo'):