diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-04-25 21:24:59 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-05-08 08:11:00 +0200 |
commit | dd205f425e03ee2c02e44ea9f780d7a237af5c45 (patch) | |
tree | 1f7b8b4705139f7461c1839e7de77fd5496b9adb | |
parent | 2e902e9a1458f7e4220bffb47f412a28366c8dc0 (diff) |
fix tl--content
-rw-r--r-- | lisp/mastodon-tl.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index a0284d4..7f72ece 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -1095,7 +1095,7 @@ HELP-ECHO, DISPLAY, and FACE are the text properties to add." "Retrieve text content from TOOT. Runs `mastodon-tl--render-text' and fetches poll or media." (let-alist toot - (concat (mastodon-tl--render-text .content toot) + (concat (mastodon-tl--render-text (or .reblog.content .content toot)) (when (or .reblog.poll .poll) (mastodon-tl--get-poll toot)) (mastodon-tl--media toot)))) |