diff options
author | Johnson Denen <johnson.denen@gmail.com> | 2017-04-25 23:35:28 -0400 |
---|---|---|
committer | Johnson Denen <johnson.denen@gmail.com> | 2017-04-28 19:57:23 -0400 |
commit | a7053c85fc5134631e6341b96614ad131d423d86 (patch) | |
tree | 516951881eda3cc620ca1856f664938dcdcc1412 /lisp/mastodon-tl.el | |
parent | 40d8cac89c94367ce7adda04684e0fa6255f0c64 (diff) |
Store 'favourited-p and 'boosted-p properties on bylines
Diffstat (limited to 'lisp/mastodon-tl.el')
-rw-r--r-- | lisp/mastodon-tl.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index 46e923d..a1535b9 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -141,9 +141,10 @@ Return value from boosted content if available." (mastodon-tl--byline-author toot) (mastodon-tl--byline-boosted toot) (propertize "\n ------------" 'face 'default)) - 'toot-id id - 'toot-json toot))) - + 'favourited-p faved + 'boosted-p boosted + 'toot-id id + 'toot-json toot))) (defun mastodon-tl--set-face (string face render) "Set the face of a string. If `render' is not 'nil @@ -155,7 +156,7 @@ also render the html" (shr-render-region (point-min) (point-max))) (buffer-string)) 'face face)) - + (defun mastodon-tl--spoiler (toot) "Retrieve spoiler message from TOOT." (let* ((spoiler (mastodon-tl--field 'spoiler_text toot)) |