aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 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))