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-toot.el | |
parent | 40d8cac89c94367ce7adda04684e0fa6255f0c64 (diff) |
Store 'favourited-p and 'boosted-p properties on bylines
Diffstat (limited to 'lisp/mastodon-toot.el')
-rw-r--r-- | lisp/mastodon-toot.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el index 104df1c..41b69cc 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -69,7 +69,7 @@ If FAVED is nil, favourite the toot. If FAVED is non-nil, unfavourite the toot." (interactive) (let* ((id (mastodon-tl--property 'toot-id)) - (faved (get-text-property (point) 'favourite-p)) + (faved (get-text-property (point) 'favourited-p)) (action (if faved "unfavourite" "favourite")) (remove (when faved t))) (mastodon-toot--action action (lambda () (mastodon-toot--action-success "F" remove))) |