From cd44f7807ffea4ecb86f07bfd160f9416908eb5d Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Mon, 27 Mar 2023 12:22:11 +0200 Subject: remove all ;; Package-Requires: declarations save for main file main file is set in .dir-locals.el now --- lisp/mastodon-notifications.el | 1 - 1 file changed, 1 deletion(-) (limited to 'lisp/mastodon-notifications.el') diff --git a/lisp/mastodon-notifications.el b/lisp/mastodon-notifications.el index 22228f2..fd48a65 100644 --- a/lisp/mastodon-notifications.el +++ b/lisp/mastodon-notifications.el @@ -6,7 +6,6 @@ ;; Marty Hiatt ;; Maintainer: Marty Hiatt ;; Version: 1.0.0 -;; Package-Requires: ((emacs "27.1")) ;; Homepage: https://codeberg.org/martianh/mastodon.el ;; This file is not part of GNU Emacs. -- cgit v1.2.3 From 34db55b8ae375bb397c1cb3614abaaa847d2de3f Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Mon, 27 Mar 2023 12:31:59 +0200 Subject: notifs-foll-req process: call reload-timeline-or-profile --- lisp/mastodon-notifications.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lisp/mastodon-notifications.el') diff --git a/lisp/mastodon-notifications.el b/lisp/mastodon-notifications.el index fd48a65..51d8422 100644 --- a/lisp/mastodon-notifications.el +++ b/lisp/mastodon-notifications.el @@ -126,7 +126,7 @@ follow-requests view." (lambda () (if f-reqs-view-p (mastodon-views--view-follow-requests) - (mastodon-notifications-get)) + (mastodon-tl--reload-timeline-or-profile)) (message "Follow request of %s (@%s) %s!" name handle (if reject "rejected" -- cgit v1.2.3 From 14dbf79135f6751fc93eb5e85e0b2eae3bde6568 Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Tue, 28 Mar 2023 14:52:28 +0200 Subject: notifs: fix edit response alist --- lisp/mastodon-notifications.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lisp/mastodon-notifications.el') diff --git a/lisp/mastodon-notifications.el b/lisp/mastodon-notifications.el index 51d8422..bed2d9a 100644 --- a/lisp/mastodon-notifications.el +++ b/lisp/mastodon-notifications.el @@ -76,7 +76,7 @@ ("Posted a poll" . "that has now ended") ("Requested to follow" . "you") ("Posted" . "a post") - ("Edited" . "a post")) + ("Edited" . "a post from")) "Alist of subjects for notification types.") (defvar mastodon-notifications--map -- cgit v1.2.3