diff options
author | mousebot <mousebot@riseup.net> | 2021-10-15 15:10:13 +0200 |
---|---|---|
committer | mousebot <mousebot@riseup.net> | 2021-10-15 15:10:13 +0200 |
commit | e93adbde20d8f8f0d0e3810ebc3f1890d362dae4 (patch) | |
tree | b4e94c747a3510e9b3f9dc293a8237ae8033d93f /lisp/mastodon-client.el | |
parent | 6b2207251c9b44cd47cc03c8f9a68970e123c5d6 (diff) |
rever auth / client changes too
Diffstat (limited to 'lisp/mastodon-client.el')
-rw-r--r-- | lisp/mastodon-client.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/mastodon-client.el b/lisp/mastodon-client.el index 4503d6d..bdfbca9 100644 --- a/lisp/mastodon-client.el +++ b/lisp/mastodon-client.el @@ -49,10 +49,10 @@ "POST client to Mastodon." (mastodon-http--post (mastodon-http--api "apps") - '(("client_name" "mastodon.el") - ("redirect_uris" "urn:ietf:wg:oauth:2.0:oob") - ("scopes" "read write follow") - ("website" "https://github.com/jdenen/mastodon.el")) + '(("client_name" . "mastodon.el") + ("redirect_uris" . "urn:ietf:wg:oauth:2.0:oob") + ("scopes" . "read write follow") + ("website" . "https://github.com/jdenen/mastodon.el")) nil :unauthenticated)) |