aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-auth.el
diff options
context:
space:
mode:
authormousebot <mousebot@riseup.net>2021-10-20 15:37:14 +0200
committermousebot <mousebot@riseup.net>2021-10-20 15:37:14 +0200
commit0854bc834d5fe35a241d8dc2339721635de2c00e (patch)
tree2027e8c814c3df3f3c6050e4d150c0e633753a6e /lisp/mastodon-auth.el
parentb74f24d483d3f7a478fc93eae21aa8c1e6154e24 (diff)
revert hdurers alist > plist conv in auth.el
Diffstat (limited to 'lisp/mastodon-auth.el')
-rw-r--r--lisp/mastodon-auth.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/mastodon-auth.el b/lisp/mastodon-auth.el
index 6729e81..0b0c703 100644
--- a/lisp/mastodon-auth.el
+++ b/lisp/mastodon-auth.el
@@ -73,12 +73,12 @@ If no auth-sources file, runs `mastodon-auth--generate-token-no-storing-credenti
"Make POST to generate auth token, without using auth-sources file."
(mastodon-http--post
(concat mastodon-instance-url "/oauth/token")
- `(("client_id" ,(plist-get (mastodon-client) :client_id))
- ("client_secret" ,(plist-get (mastodon-client) :client_secret))
- ("grant_type" "password")
- ("username" ,(read-string "Email: " user-mail-address))
- ("password" ,(read-passwd "Password: "))
- ("scope" "read write follow"))
+ `(("client_id" . ,(plist-get (mastodon-client) :client_id))
+ ("client_secret" . ,(plist-get (mastodon-client) :client_secret))
+ ("grant_type" . "password")
+ ("username" . ,(read-string "Email: " user-mail-address))
+ ("password" . ,(read-passwd "Password: "))
+ ("scope" . "read write follow"))
nil
:unauthenticated))