branch: elpa/mastodon
commit 406a9dd4a502b4275f474394b6eeab223fbc0538
Author: marty hiatt <[email protected]>
Commit: marty hiatt <[email protected]>
FIX broken require :noerror call!
---
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 0bb2cacd30..5db7114e6b 100644
--- a/lisp/mastodon-notifications.el
+++ b/lisp/mastodon-notifications.el
@@ -1045,7 +1045,7 @@ When FORCE, skip all checks and show an alert (for
debugging)."
(when (or force
(and (> count 0)
(not mastodon-notifications-notify-shown)))
- (if (not (require 'alert :noerror))
+ (if (not (require 'alert nil :noerror))
(message "mastodon.el: new notifications %s" count)
(alert (format "New notifications: <b>%s</b>" count)
:title "mastodon.el"