diff options
| author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-08-20 16:25:52 +0200 | 
|---|---|---|
| committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-08-20 16:25:52 +0200 | 
| commit | 705adb3ae86ee2c09074e9938673fc9083b9ab9d (patch) | |
| tree | 42057b111e91e1575794a8b717c055ae24249088 /lisp | |
| parent | 53107deb0eb937c770f5a4a8adcb853c3eb9e00a (diff) | |
tl--bookmark-toggle: use 'base-toot-id prop
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/mastodon-toot.el | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el index 821dd43..3081637 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -276,7 +276,8 @@ TYPE is a symbol, either 'favourite or 'boost."    "Bookmark or unbookmark toot at point."    (interactive)    (let* ((toot (mastodon-tl--property 'toot-json)) -         (id (mastodon-tl--as-string (mastodon-tl--toot-id toot))) +         (id (mastodon-tl--property 'base-toot-id)) +         ;; (mastodon-tl--as-string (mastodon-tl--toot-id toot)))           (bookmarked-p (mastodon-tl--property 'bookmarked-p))           (prompt (if bookmarked-p                       (format "Toot already bookmarked. Remove? ")  | 
