diff options
-rw-r--r-- | lisp/mastodon-toot.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el index 53ddeee..086d2f1 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -678,8 +678,8 @@ Pushes `mastodon-toot-current-toot-text' to TEXT-ONLY means don't check for attachments or polls." (and (if text-only t - (not mastodon-toot--media-attachments) - (not mastodon-toot-poll)) + (and (not mastodon-toot--media-attachments) + (not mastodon-toot-poll))) (string-empty-p (mastodon-tl--clean-tabs-and-nl (mastodon-toot--remove-docs))))) |