diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-03-20 23:05:06 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-03-20 23:11:04 +0100 |
commit | 885ffb8b74ee53623aa3aff98607a8223ef084e4 (patch) | |
tree | ba582efc50fe5db30dc43ed3d9b664ca8bdc6192 | |
parent | 4eed47ea1fec9cdbcacfddd981770acecbb345c4 (diff) |
fix calls to map-account-id-from-toot
-rw-r--r-- | lisp/mastodon-tl.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index b20e889..dee82e1 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -1721,8 +1721,8 @@ ID is that of the post the context is currently displayed for." nil :silent)) (ancestors (alist-get 'ancestors context-json)) (descendants (alist-get 'descendants context-json)) - (a-ids (mastodon-tl--map-account-id-from-toot a-ids ancestors)) - (d-ids (mastodon-tl--map-account-id-from-toot a-ids descendants))) + (a-ids (mastodon-tl--map-account-id-from-toot ancestors)) + (d-ids (mastodon-tl--map-account-id-from-toot descendants))) (or (member (mastodon-auth--get-account-id) a-ids) (member (mastodon-auth--get-account-id) d-ids)))) |