diff options
author | mousebot <mousebot@riseup.net> | 2021-10-15 12:57:41 +0200 |
---|---|---|
committer | mousebot <mousebot@riseup.net> | 2021-10-15 12:57:41 +0200 |
commit | 1f2ebe94c647fef509e06e9ef6f79697ef98a356 (patch) | |
tree | 08f21e8d7645e6074d558acf612c50d5b50ff447 /lisp/mastodon-client.el | |
parent | 547e4cf02a62d4a625ba13017b65908d77da50a6 (diff) |
first test merge of hdurer's WIP: Posting of images
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 bdfbca9..4503d6d 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)) |