diff options
-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) |