branch: elpa/mastodon
commit 94c491d203a9fed1e51f3caf01919c551bc2a30b
Author: marty hiatt <[email protected]>
Commit: marty hiatt <[email protected]>
display unread notifs count in msg
---
lisp/mastodon-notifications.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lisp/mastodon-notifications.el b/lisp/mastodon-notifications.el
index 03cee14417..51452f6292 100644
--- a/lisp/mastodon-notifications.el
+++ b/lisp/mastodon-notifications.el
@@ -995,7 +995,7 @@ Calls `mastodon-tl--update'."
(let ((count (mastodon-notifications--get-unread-count)))
(when (> count 0)
(if (not (mastodon-tl--buffer-type-eq 'notifications))
- (message "New mastodon.el notification(s)")
+ (message "New mastodon.el notification(s): %s" count)
;; run updates if in notifs buffer:
(message "Updating mastodon.el notifications...")
(mastodon-tl--update)