diff options
author | mousebot <mousebot@riseup.net> | 2022-03-11 08:43:11 +0100 |
---|---|---|
committer | mousebot <mousebot@riseup.net> | 2022-03-11 08:44:10 +0100 |
commit | 55689d91d2d220d156775847a6c6375c90469a08 (patch) | |
tree | e45c178c3b1d6c4909f62fd2077c9b0dc94da518 /lisp/mastodon-notifications.el | |
parent | b7c7bc608a0650842c3479564b85ff91031ae2d7 (diff) |
improve empty notifications json message
Diffstat (limited to 'lisp/mastodon-notifications.el')
-rw-r--r-- | lisp/mastodon-notifications.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon-notifications.el b/lisp/mastodon-notifications.el index 670105a..719a77b 100644 --- a/lisp/mastodon-notifications.el +++ b/lisp/mastodon-notifications.el @@ -247,7 +247,7 @@ ID is the notification's own id, which is attached as a property." (defun mastodon-notifications--timeline (json) "Format JSON in Emacs buffer." (if (equal json '[]) - (message "Looks like you have no notifications for the moment.") + (message "Looks like you have no (more) notifications for the moment.") (mapc #'mastodon-notifications--by-type json) (goto-char (point-min)))) |