diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-12-28 18:49:07 +1100 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-12-29 10:21:25 +1100 |
commit | 2d32115bb206f91001df89baeab8371afbeecb14 (patch) | |
tree | 38292a0b5c7c24611cce1479e3437a428ebf843d /lisp/mastodon-tl.el | |
parent | 9d9e6d7f632d8292c60c995681d632caffaf430f (diff) |
Revert "adapt messaging for following of locked accounts"
This reverts commit 0eeb429d3531a3c11cc9ea3c3aef258b7c671edb.
Diffstat (limited to 'lisp/mastodon-tl.el')
-rw-r--r-- | lisp/mastodon-tl.el | 40 |
1 files changed, 14 insertions, 26 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index afa665b..93b5451 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -2283,15 +2283,6 @@ LANGS is an array parameters alist of languages to filer user's posts by." (mastodon-tl--do-user-action-and-response user-handle "follow" nil notify langs))) -(defun mastodon-tl--account-locked-p (response) - "Return non-nil if RESPONSE states that the account acted upon is locked." - (let* ((json (with-current-buffer response (mastodon-http--process-json))) - (locked-p (alist-get 'requested json))) - ;; handle :json-false in response: - (if (eq 't locked-p) - t - nil))) - (defun mastodon-tl--enable-notify-user-posts (user-handle) "Query for USER-HANDLE and enable notifications when they post." (interactive @@ -2479,23 +2470,20 @@ ARGS is an alist of any parameters to send with the request." (mastodon-http--triage response (lambda () - (let ((locked-p (mastodon-tl--account-locked-p response))) - (cond ((string-equal notify "true") - (message "Receiving notifications for user %s (@%s)!" - name user-handle)) - ((string-equal notify "false") - (message "Not receiving notifications for user %s (@%s)!" - name user-handle)) - ((or (string-equal action "mute") - (string-equal action "unmute")) - (message "User %s (@%s) %sd!" name user-handle action)) - ((assoc "languages[]" args #'equal) - (message "User %s filtered by language(s): %s" name - (mapconcat #'cdr args " "))) - (locked-p - (message "Requested to follow user %s (@%s)" name user-handle)) - ((eq notify nil) - (message "User %s (@%s) %sed!" name user-handle action)))))))) + (cond ((string-equal notify "true") + (message "Receiving notifications for user %s (@%s)!" + name user-handle)) + ((string-equal notify "false") + (message "Not receiving notifications for user %s (@%s)!" + name user-handle)) + ((or (string-equal action "mute") + (string-equal action "unmute")) + (message "User %s (@%s) %sd!" name user-handle action)) + ((assoc "languages[]" args #'equal) + (message "User %s filtered by language(s): %s" name + (mapconcat #'cdr args " "))) + ((eq notify nil) + (message "User %s (@%s) %sed!" name user-handle action))))))) ;; FOLLOW TAGS |