diff options
author | mousebot <mousebot@riseup.net> | 2022-02-19 13:44:19 +0100 |
---|---|---|
committer | mousebot <mousebot@riseup.net> | 2022-02-19 13:46:25 +0100 |
commit | a5fffb209d7bb2644741fd917768786628ec94b3 (patch) | |
tree | 9994a8fbf66cd2d90bae7e9f237d6014c19e49f2 /lisp | |
parent | 13e1ebff3b73ba3e6ad522d91103f432ce96ff92 (diff) |
add toot-json property to profile followers/following note
in profile--add-author-bylines, which now prints profile notes
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mastodon-profile.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el index 9c1cd88..cb449b6 100644 --- a/lisp/mastodon-profile.el +++ b/lisp/mastodon-profile.el @@ -448,7 +448,9 @@ Used to view a user's followers and those they're following." 'toot-json toot)) (mastodon-media--inline-images start-pos (point)) (insert "\n" - (mastodon-tl--render-text (alist-get 'note toot) nil) + (propertize + (mastodon-tl--render-text (alist-get 'note toot) nil) + 'toot-json toot) ' "\n"))) tootv)))) |