aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarty hiatt <martianhiatus [a t] riseup [d o t] net>2023-05-08 18:28:30 +0200
committermarty hiatt <martianhiatus [a t] riseup [d o t] net>2023-05-08 18:28:30 +0200
commitd46cc6ccb09e54fa5af20fe71ea4cf7da652a109 (patch)
tree216f00c20a2f1d8936fb02ad7e709a980896d6e8
parentec45108342ddb640a58db9bc6f1e70c0e37f93af (diff)
Revert "revert to use of tl--field in --byline."
This reverts commit 8ec34ca9f6082b731d270012bbada1b3d2319cc2.
-rw-r--r--lisp/mastodon-tl.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el
index a19f26a..48d6036 100644
--- a/lisp/mastodon-tl.el
+++ b/lisp/mastodon-tl.el
@@ -584,12 +584,12 @@ this just means displaying toot client."
.edited_at
(let* ((created-time
;; bosts and faves in notifs view
- ;; (timestamps for original not the boost/fave):
- (or (mastodon-tl--field 'created_at
- (mastodon-tl--field 'status toot))
+ ;; (makes timestamps be for the original toot
+ ;; not the boost/fave):
+ (or .status.created_at
;; all other toots, inc. boosts/faves in timelines:
- ;; (mastodon-tl--field fetches from reblogs if needed):
- (mastodon-tl--field 'created_at toot)))
+ ;; (mastodon-tl--field auto fetches from reblogs if needed):
+ .created_at))
(parsed-time (date-to-time created-time))
(faved (equal 't .favourited))
(boosted (equal 't .reblogged))