diff options
author | mousebot <mousebot@riseup.net> | 2022-03-11 09:26:19 +0100 |
---|---|---|
committer | mousebot <mousebot@riseup.net> | 2022-03-11 09:26:19 +0100 |
commit | 56995a8c693cca194e3272d17fec092c3585a3f4 (patch) | |
tree | f14255b792a63d42dbada250e1fcf6d25049c86f /lisp/mastodon-notifications.el | |
parent | 55689d91d2d220d156775847a6c6375c90469a08 (diff) |
favourite not favorite
Diffstat (limited to 'lisp/mastodon-notifications.el')
-rw-r--r-- | lisp/mastodon-notifications.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mastodon-notifications.el b/lisp/mastodon-notifications.el index 719a77b..041918d 100644 --- a/lisp/mastodon-notifications.el +++ b/lisp/mastodon-notifications.el @@ -146,7 +146,7 @@ Can be called in notifications view or in follow-requests view." (defun mastodon-notifications--favourite (note) "Format for a `favourite' NOTE." - (mastodon-notifications--format-note note 'favorite)) + (mastodon-notifications--format-note note 'favourite)) (defun mastodon-notifications--reblog (note) "Format for a `boost' NOTE." @@ -202,7 +202,7 @@ Status notifications are given when (mastodon-notifications--byline-concat (cond ((equal type 'boost) "Boosted") - ((equal type 'favorite) + ((equal type 'favourite) "Favourited") ((equal type 'follow-request) "Requested to follow") |