diff options
Diffstat (limited to 'lisp/mastodon-toot.el')
-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 1f3440c..6521b16 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -642,13 +642,13 @@ candidate ARG. IGNORED remains a mystery." (mastodon-toot--process-local booster) mentions) ;; booster is either user or in mentions: - (if (not string-match user mentions) + (if (not (string-match user mentions)) ;; user not already in mentions: (concat (mastodon-toot--process-local user) mentions) ;; user already in mentions: mentions)) - ;; no booster: + ;; ELSE no booster: (if (not (string-match user mentions)) ;; user not in mentions: (concat (mastodon-toot--process-local user) |