aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-auth.el
diff options
context:
space:
mode:
authormarty hiatt <martianhiatus [a t] riseup [d o t] net>2023-07-13 09:42:26 +0200
committermarty hiatt <martianhiatus [a t] riseup [d o t] net>2023-07-13 10:25:16 +0200
commitb84bca8e91ee75704b6297e788944a07b5c364ee (patch)
tree66b5119bf3368208459c2502ac7c311ca0c59a89 /lisp/mastodon-auth.el
parentdfc40c0bc2c8f1653ca71335b6ad99230f38067e (diff)
give mastodon-auth--get-browser-login-url a proper alist.
Diffstat (limited to 'lisp/mastodon-auth.el')
-rw-r--r--lisp/mastodon-auth.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/mastodon-auth.el b/lisp/mastodon-auth.el
index 0db8a19..6588f13 100644
--- a/lisp/mastodon-auth.el
+++ b/lisp/mastodon-auth.el
@@ -85,10 +85,10 @@ We apologize for the inconvenience.
"Return properly formed browser login url."
(mastodon-http--append-query-string
(concat mastodon-instance-url "/oauth/authorize/")
- `(("response_type" "code")
- ("redirect_uri" ,mastodon-client-redirect-uri)
- ("scope" ,mastodon-client-scopes)
- ("client_id" ,(plist-get (mastodon-client) :client_id)))))
+ `(("response_type" . "code")
+ ("redirect_uri" . ,mastodon-client-redirect-uri)
+ ("scope" . ,mastodon-client-scopes)
+ ("client_id" . ,(plist-get (mastodon-client) :client_id)))))
(defvar mastodon-auth--explanation
(format