aboutsummaryrefslogtreecommitdiff
path: root/sx-notify.el
diff options
context:
space:
mode:
authorArtur Malabarba <Malabarba@users.noreply.github.com>2015-04-06 20:35:45 +0100
committerArtur Malabarba <Malabarba@users.noreply.github.com>2015-04-06 20:35:45 +0100
commite78510b2d4fd0efe9da9bbe1daa2c7e3d54984d9 (patch)
treea77f76bedf059304be80d517f25b91adb2428ac1 /sx-notify.el
parent517dfb1d5ee199ede3ebdafe2654be33e4798571 (diff)
parent010bcf7ec726d588aa6cb59955ea1cd363a60935 (diff)
Merge pull request #269 from vermiculus/json-false
Json false
Diffstat (limited to 'sx-notify.el')
-rw-r--r--sx-notify.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/sx-notify.el b/sx-notify.el
index 0c9a5b8..24aa9b7 100644
--- a/sx-notify.el
+++ b/sx-notify.el
@@ -72,11 +72,11 @@
(setq sx-inbox--unread-inbox
(cl-remove-if
(lambda (x) (member (cdr (assq 'link x)) sx-inbox--read-inbox))
- (append (sx-inbox-get) nil)))
+ (sx-inbox-get)))
(setq sx-inbox--unread-notifications
(cl-remove-if
(lambda (x) (member (cdr (assq 'link x)) sx-inbox--read-notifications))
- (append (sx-inbox-get t) nil))))
+ (sx-inbox-get t))))
(provide 'sx-notify)
;;; sx-notify.el ends here