branch: elpa/mastodon
commit 25965f63966e8d9a2a418d92f996cba42771a09a
Author: marty hiatt <[email protected]>
Commit: marty hiatt <[email protected]>

    top byline: add reply symbol to self-replies.
---
 lisp/mastodon-tl.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el
index 72c6d8fcf76..e9f5b8349a2 100644
--- a/lisp/mastodon-tl.el
+++ b/lisp/mastodon-tl.el
@@ -814,8 +814,9 @@ If it is a boost, return '$username boosted'."
      (reply-acc-id
       (unless (mastodon-tl--buffer-type-eq 'thread)
         (if (equal reply-acc-id (map-nested-elt toot '(account id)))
-            (propertize "continued thread\n"
-                        'face 'mastodon-boosted-face)
+            (concat (mastodon-tl--symbol 'reply) " "
+                    (propertize "continued thread\n"
+                                'face 'mastodon-boosted-face))
           (let* ((acc (mastodon-tl--acc-by-id reply-acc-id))
                  (name (or (alist-get 'display_name acc)
                            (alist-get 'username acc))))

Reply via email to