diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-09-20 14:44:22 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-09-20 14:55:16 +0200 |
commit | c917a2d0e85167dc82db14975d2d3960114d4279 (patch) | |
tree | e1d8e27f878d056ff41bf8fc9b432255e0f194a9 | |
parent | 2b484837ef8a0e2874284ff7be6d531e9b45d610 (diff) |
FIX getting of 'parent-toot properties in mastodon-toot--reply
-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 5ec58dd..8c9cc62 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -761,7 +761,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--property 'parent-toot)) ; for new notifs handling + (parent (mastodon-tl--field 'parent-toot toot)) ; for new notifs handling (id (mastodon-tl--as-string (mastodon-tl--field 'id (or parent toot)))) (account (mastodon-tl--field 'account toot)) |