diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-02-18 18:32:06 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-02-18 18:32:06 +0100 |
commit | 37c0397bf76284aaef20949d50721b7d5fefc259 (patch) | |
tree | 826cd4e0b885d8d29b163530d0f521c95e571b66 | |
parent | 9b579c7e981ce37a5d6059de4e249d5d54452d6e (diff) |
make auth--get-account-name silent
-rw-r--r-- | lisp/mastodon-auth.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/mastodon-auth.el b/lisp/mastodon-auth.el index 3de2901..788fa77 100644 --- a/lisp/mastodon-auth.el +++ b/lisp/mastodon-auth.el @@ -221,7 +221,9 @@ Handle any errors from the server." 'acct (mastodon-http--get-json (mastodon-http--api - "accounts/verify_credentials")))) + "accounts/verify_credentials") + nil + :silent))) (defun mastodon-auth--get-account-id () "Request user credentials and return an account name." |