diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-10-27 12:53:03 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-10-27 12:53:03 +0200 |
commit | e07ccef99359230a88b33360e1a5657a6bf49b33 (patch) | |
tree | 3e18bca727a29cfd10c8c703484ec7efc11b1bf6 /lisp/mastodon-toot.el | |
parent | f324c1cbf71137efa1bd3976c5b56c0ec7f24f47 (diff) |
FIX fetching parent toot in --reply, for notifs
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 172839c..79a99ad 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -774,7 +774,7 @@ Customize `mastodon-toot-display-orig-in-reply-buffer' to display text of the toot being replied to in the compose buffer." (interactive) (let* ((toot (mastodon-tl--property 'toot-json)) - (parent (mastodon-tl--field 'parent-toot toot)) ; for new notifs handling + (parent (mastodon-tl--property 'parent-toot)) ; for new notifs handling (id (mastodon-tl--as-string (mastodon-tl--field 'id (or parent toot)))) (account (mastodon-tl--field 'account toot)) |