Skip to content

Commit

Permalink
Fixed a bug where not passing a callback caused an error.
Browse files Browse the repository at this point in the history
  • Loading branch information
sellout committed Mar 15, 2011
1 parent 21d3239 commit 645e9f9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/consumer.lisp
Expand Up @@ -54,7 +54,8 @@ it has query params already they are added onto it."
(signature-method :hmac-sha1))
"Additional parameters will be stored in the USER-DATA slot of the token."
;; TODO: support 1.0a too
(let* ((auth-parameters (cons `("oauth_callback" . ,(or callback-uri "oob"))
(let* ((callback-uri (or callback-uri "oob"))
(auth-parameters (cons `("oauth_callback" . ,callback-uri)
(generate-auth-parameters consumer-token
signature-method
timestamp
Expand Down

0 comments on commit 645e9f9

Please sign in to comment.