diff options
| -rw-r--r-- | lisp/mastodon-toot.el | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el index a394b00..c87b3bb 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -738,7 +738,7 @@ instance to edit a toot."                              (length mastodon-toot--media-attachment-ids)))))             (message "Something is wrong with your uploads. Wait for them to complete or try again."))            ((and mastodon-toot--max-toot-chars -                (> (length toot) mastodon-toot--max-toot-chars)) +                (> (mastodon-toot--count-toot-chars toot) mastodon-toot--max-toot-chars))             (message "Looks like your toot is longer than that maximum allowed length."))            ((mastodon-toot--empty-p)             (message "Empty toot. Cowardly refusing to post this."))  | 
