diff options
author | marty hiatt <martianhiatus@riseup.net> | 2024-08-02 18:21:06 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2024-08-02 18:21:06 +0200 |
commit | 2977abb1e13fc8a367f2e5a7bc1493a107803bc8 (patch) | |
tree | d4a4eba26ae6cd9504ca965f984d24cc80a8bd93 /lisp/mastodon-tl.el | |
parent | 254402b0d3109556eee0c50e8eb1a98cf6eeaee8 (diff) |
tl: use mastodon-toot--base-toot-or-item-json
Diffstat (limited to 'lisp/mastodon-tl.el')
-rw-r--r-- | lisp/mastodon-tl.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index 941fe50..a3cbd60 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -2464,8 +2464,7 @@ ARGS is an alist of any parameters to send with the request." (defun mastodon-tl--get-tags-list () "Return the list of tags of the toot at point." - (let* ((toot (or (mastodon-tl--property 'base-toot :no-move) ; fave/boost notifs - (mastodon-tl--property 'item-json :no-move))) + (let* ((toot (mastodon-toot--base-toot-or-item-json)) (tags (mastodon-tl--field 'tags toot))) (mastodon-tl--map-alist 'name tags))) |