diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-05-08 10:02:59 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-05-08 10:02:59 +0200 |
commit | 8ec34ca9f6082b731d270012bbada1b3d2319cc2 (patch) | |
tree | 8d00a2bb7f0ac8a36d6ceb1c52d8c9ca200a7362 /lisp | |
parent | b03c31fb467ca367c73b048d8574c1a780994cff (diff) |
revert to use of tl--field in --byline.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mastodon-tl.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index 0c24b86..012017f 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -577,12 +577,12 @@ this just means displaying toot client." (let-alist toot (let* ((created-time ;; bosts and faves in notifs view - ;; (makes timestamps be for the original toot - ;; not the boost/fave): - (or .status.created_at + ;; (timestamps for original not the boost/fave): + (or (mastodon-tl--field 'created_at + (mastodon-tl--field 'status toot)) ;; all other toots, inc. boosts/faves in timelines: - ;; (mastodon-tl--field auto fetches from reblogs if needed): - .created_at)) + ;; (mastodon-tl--field fetches from reblogs if needed): + (mastodon-tl--field 'created_at toot))) (parsed-time (date-to-time created-time)) (faved (equal 't .favourited)) (boosted (equal 't .reblogged)) |