diff options
author | marty hiatt <martianhiatus@riseup.net> | 2024-02-07 21:02:53 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2024-02-07 21:02:53 +0100 |
commit | a01eec0d57ed64f8a83784cd48e44fc2961e0d64 (patch) | |
tree | 0672e1adef78fa4d6c1e3288dc62498bfae62a5b | |
parent | d749a78feb16362886d94209b1051adba107a146 (diff) |
message appropriately for foll req
-rw-r--r-- | lisp/mastodon-tl.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index 3d8e8dd..d462918 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -2149,7 +2149,10 @@ ARGS is an alist of any parameters to send with the request." (mapconcat #'cdr args " "))) ((and (eq notify nil) (eq reblogs nil)) - (message "User %s (@%s) %sed!" name user-handle action)))))))) + (if (and (equal action "follow") + (eq t (alist-get 'requested json))) + (message "Follow requested for user %s (@%s)!" name user-handle) + (message "User %s (@%s) %sed!" name user-handle action))))))))) ;; FOLLOW TAGS |