aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-tl.el
diff options
context:
space:
mode:
authormarty hiatt <martianhiatus [a t] riseup [d o t] net>2023-04-27 17:41:16 +0200
committermarty hiatt <martianhiatus [a t] riseup [d o t] net>2023-05-08 08:14:16 +0200
commitb322eee9e032066296055419037c848abfb00793 (patch)
tree737eeaba4c489bcede147a83930d876b92a23b0b /lisp/mastodon-tl.el
parent8539f1eb911e8bdcd62488ac974ffc7592ceb1ff (diff)
remove quasi-quoting of let-alist dotted vars
Diffstat (limited to 'lisp/mastodon-tl.el')
-rw-r--r--lisp/mastodon-tl.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el
index 7f72ece..28096e4 100644
--- a/lisp/mastodon-tl.el
+++ b/lisp/mastodon-tl.el
@@ -536,8 +536,8 @@ The result is added as an attachments property to author-byline."
(mapcar
(lambda (attachment)
(let-alist attachment
- `(:url ,(or .remote_url .url) ; fallback for notifications
- :type ,.type)))
+ (list :url (or .remote_url .url) ; fallback for notifications
+ :type .type)))
media-attachments)))
(defun mastodon-tl--byline-boosted (toot)