diff options
Diffstat (limited to 'lisp/mastodon-toot.el')
| -rw-r--r-- | lisp/mastodon-toot.el | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el index 6162f52..36d08fd 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -332,7 +332,9 @@ TYPE is a symbol, either 'favourite or 'boost."                                          (list 'boosted-p (not boosted))                                        (list 'favourited-p (not faved))))                 (mastodon-toot--action-success -                (if boost-p "B" "F") +                (if boost-p +                    "B" +                  (mastodon-tl--return-fave-char))                  byline-region remove))               (message (format "%s #%s" (if boost-p msg action) id))))))        (message (format "Nothing to %s here?!?" action-string)))))  | 
