diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-07-13 10:23:11 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-07-13 10:23:11 +0200 |
commit | 5f095822e92872ddcb76fc9fe98c0cf985849f3b (patch) | |
tree | dc45d5bdd162cef7db95bae93b0fe174080e992f /lisp/mastodon-http.el | |
parent | dbb8631f90bc249432746bf372bb6c1f698fc8d1 (diff) |
fix indent of media attachments
Diffstat (limited to 'lisp/mastodon-http.el')
-rw-r--r-- | lisp/mastodon-http.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mastodon-http.el b/lisp/mastodon-http.el index 64f59ca..551d4fd 100644 --- a/lisp/mastodon-http.el +++ b/lisp/mastodon-http.el @@ -347,10 +347,10 @@ item uploaded, and `mastodon-toot--update-status-fields' is run." ;; because the '=' test below fails for them ;; they have the form (error . error message 24) ((not (proper-list-p error-thrown)) ; not dotted list - (message "Got error: %s. Shit went south." (cdr error-thrown))) + (message "Got error: %s. Shit went south." (cdr error-thrown))) ;; handle mastodon api errors ;; they have the form (error http 401) - ((= (car (last error-thrown)) 401) + ((= (car (last error-thrown)) 401) (message "Got error: %s Unauthorized: The access token is invalid" error-thrown)) ((= (car (last error-thrown)) 422) |