branch: externals/oauth2 commit ff562b490dc60a0fd726ce150d4fa3bc5ee9a0cc Author: Xiyue Deng <manp...@gmail.com> Commit: Sean Whitton <spwhit...@spwhitton.name>
* packages/oauth2/oauth2.el (oauth2-request-access): Untabify. --- oauth2.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oauth2.el b/oauth2.el index 70c59e7513..c3aa45ed69 100644 --- a/oauth2.el +++ b/oauth2.el @@ -145,7 +145,7 @@ TOKEN should be obtained with `oauth2-request-access'." (oauth2-make-access-request (oauth2-token-token-url token) (concat "client_id=" (oauth2-token-client-id token) - (when (oauth2-token-client-secret token) + (when (oauth2-token-client-secret token) (concat "&client_secret=" (oauth2-token-client-secret token))) "&refresh_token=" (oauth2-token-refresh-token token) "&grant_type=refresh_token")))))