diff options
-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 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)) |