diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-05-02 20:40:41 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-05-08 08:14:16 +0200 |
commit | 3b015ec901d21fc5135acb60c645c15a9cf3afbd (patch) | |
tree | f28828ea2b4769862e3d428d7e0619e15a03b7e0 | |
parent | b322eee9e032066296055419037c848abfb00793 (diff) |
fix --get-poll
-rw-r--r-- | lisp/mastodon-tl.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index 28096e4..7cfcc3e 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -1235,7 +1235,7 @@ To disable showing the stats, customize "")) 'face 'font-lock-comment-face) (let ((str (if (eq .poll.expired :json-false) - (mastodon-tl--format-poll-expiry expiry) + (mastodon-tl--format-poll-expiry .poll.expires_at) "Poll expired."))) (propertize str 'face 'font-lock-comment-face)) "\n")))) |