aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichelle Baert <rocky.road@rocky-shore.net>2018-02-13 18:56:24 +0100
committerMichelle Baert <rocky.road@rocky-shore.net>2018-02-13 18:56:24 +0100
commit6c52d544d71cac2b997f6256c41a9b29c66a337a (patch)
treeb5e26825040acc5493de0d1d13280ffe3eb4d682
parent168993aee7ff5cb98695984037d7209606a53ed3 (diff)
fixed double encoding of OAuth token request URI
-rw-r--r--sx-auth.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/sx-auth.el b/sx-auth.el
index bb2a2e2..ab9c72c 100644
--- a/sx-auth.el
+++ b/sx-auth.el
@@ -131,8 +131,7 @@ parsed and displayed prominently on the page)."
no_expiry
private_info
write_access))
- (redirect_uri . ,(url-hexify-string
- sx-auth-redirect-uri)))
+ (redirect_uri . ,sx-auth-redirect-uri))
","))))
(browse-url url)
(read-string "Enter the access token displayed on the webpage: ")))