diff options
author | Alexander Griffith <griffitaj@gmail.com> | 2017-04-24 21:39:13 -0400 |
---|---|---|
committer | Johnson Denen <johnson.denen@gmail.com> | 2017-04-24 23:18:59 -0400 |
commit | 1c9f73205ed59a7b0cac171ace20219aa347fcea (patch) | |
tree | 474f013ab9a47dab9579531be1993eb613dcd9ad /lisp/mastodon-tl.el | |
parent | d744f45f1f52d3ea0a21376e6b877a0303c7dc95 (diff) |
fixed formatting and conventions for #41
Diffstat (limited to 'lisp/mastodon-tl.el')
-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 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))))) |