aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-tl.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/mastodon-tl.el')
-rw-r--r--lisp/mastodon-tl.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el
index a1535b9..5c31dc9 100644
--- a/lisp/mastodon-tl.el
+++ b/lisp/mastodon-tl.el
@@ -31,6 +31,7 @@
(require 'mastodon-http)
(require 'mastodon-toot)
(require 'mastodon-media)
+(require 'time-date)
(defgroup mastodon-tl nil
"Timelines in Mastodon."
@@ -130,6 +131,7 @@ Return value from boosted content if available."
(defun mastodon-tl--byline (toot)
"Generate byline for TOOT."
(let ((id (cdr (assoc 'id toot)))
+ (timestamp (mastodon-tl--field 'created_at toot))
(faved (mastodon-tl--field 'favourited toot))
(boosted (mastodon-tl--field 'reblogged toot)))
(propertize
@@ -140,6 +142,8 @@ Return value from boosted content if available."
(format "(%s) " (propertize "F" 'face 'success)))
(mastodon-tl--byline-author toot)
(mastodon-tl--byline-boosted toot)
+ " "
+ (format-time-string mastodon-toot-timestamp-format (date-to-time timestamp))
(propertize "\n ------------" 'face 'default))
'favourited-p faved
'boosted-p boosted