aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-tl.el
diff options
context:
space:
mode:
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 dfea63d..b99f8f7 100644
--- a/lisp/mastodon-tl.el
+++ b/lisp/mastodon-tl.el
@@ -171,9 +171,9 @@ also render the html"
(defun mastodon-tl--media (toot)
- "Retreive a media attachment link if one exits"
+ "Retreive a media attachment link if one exists."
(let ((media (mastodon-tl--field 'media_attachments toot)))
- (if(> (length media) 0 )
+ (if (> (length media) 0 )
;; Extract the preview_url, other options here
;; are url and remote_url
(let ((link (cdr(assoc 'preview_url (elt media 0)))))