diff options
author | marty hiatt <martianhiatus@riseup.net> | 2024-03-29 13:47:16 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2024-03-29 13:57:26 +0100 |
commit | 608deff68713e7ea2561d0334b81a6a58e568f66 (patch) | |
tree | 1750223cecbd0600017560c55d5e624ac7b6df6f /lisp/mastodon-toot.el | |
parent | 1454c2253d507adf9be1d413172e0b11b853c661 (diff) |
bookmarking: no move when checking bookmarked-p status
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 a48d5d9..d6232d5 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -459,7 +459,7 @@ SUBTRACT means we are un-favouriting or unboosting, so we decrement." (interactive) (mastodon-tl--do-if-item-strict (let* ((id (mastodon-tl--property 'base-item-id)) - (bookmarked-p (mastodon-tl--property 'bookmarked-p)) + (bookmarked-p (mastodon-tl--property 'bookmarked-p :no-move)) (byline-region (when id (mastodon-tl--find-property-range 'byline (point)))) (action (if bookmarked-p "unbookmark" "bookmark")) |