diff options
| author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-04-27 17:41:16 +0200 |
|---|---|---|
| committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-05-08 08:14:16 +0200 |
| commit | b322eee9e032066296055419037c848abfb00793 (patch) | |
| tree | 737eeaba4c489bcede147a83930d876b92a23b0b | |
| parent | 8539f1eb911e8bdcd62488ac974ffc7592ceb1ff (diff) | |
remove quasi-quoting of let-alist dotted vars
| -rw-r--r-- | lisp/mastodon-tl.el | 4 |
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) |
