aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-tl.el
diff options
context:
space:
mode:
authorHolger Dürer <me@hdurer.net>2017-04-27 18:35:32 +0100
committerJohnson Denen <johnson.denen@gmail.com>2017-04-28 19:57:23 -0400
commit773d5b8cad3b029a8c1d230db5715d06df0ad525 (patch)
treec73944f9215f7940ff5f89991d14a42e26a3bc87 /lisp/mastodon-tl.el
parentb185d87fa681bc6e75a3ed230e2794cc3c02fa7d (diff)
Add the time of posting to the byline.
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