diff --git a/desktop_client.py b/desktop_client.py index 428ca28c4..f8584321b 100644 --- a/desktop_client.py +++ b/desktop_client.py @@ -506,10 +506,10 @@ def _desktopShowBoxJson(boxName: str, boxJson: {}, posStr += ' ' authorActor = postJsonObject['object']['attributedTo'] name = getNicknameFromActor(authorActor) - if isDM(postJsonObject): - name = '📧' + name if postJsonObject['object'].get('inReplyTo'): - name = '↲' + name + name += '↲' + if isDM(postJsonObject): + name += '📧' if len(name) > 16: name = name[:16] else: