branch: elpa/mastodon
commit c8114d388736e4255dc90e03b9eb68eab4dd24e5
Author: Rahguzar <rahgu...@mailbox.org>
Commit: Rahguzar <rahgu...@mailbox.org>

    Fix empty let body
---
 lisp/mastodon-tl.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el
index 610b48c34a..33913d8b66 100644
--- a/lisp/mastodon-tl.el
+++ b/lisp/mastodon-tl.el
@@ -2194,9 +2194,9 @@ We check that our account credientials id matches the 
endpoint id in the buffer
   (and (mastodon-tl--profile-buffer-p)
        (let ((endpoint-id
               (nth 1
-                   (split-string (mastodon-tl--endpoint) "/")))))
-       (string= (mastodon-auth--get-account-id)
-                endpoint-id)))
+                   (split-string (mastodon-tl--endpoint) "/"))))
+         (string= (mastodon-auth--get-account-id)
+                  endpoint-id))))
 
 (defun mastodon-tl--search-buffer-p ()
   "T if current buffer is a search buffer."

Reply via email to