branch: elpa/mastodon
commit e574ee01cbbf5a8df24c4e321145230e21158956
Merge: 558d8aea5c c8114d3887
Author: martianh <marti...@noreply.codeberg.org>
Commit: martianh <marti...@noreply.codeberg.org>

    Merge pull request 'Fix empty let body' (#674) from 
rahguzar/mastodon.el:develop into develop
---
 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