Skip to content

Commit

Permalink
fix error from smudge-api-call-async (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bqleine committed Apr 13, 2024
1 parent a847e34 commit 4a9c5b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smudge-api.el
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ Call CALLBACK with the parsed JSON response."
,(format "Bearer %s" (oauth2-token-access-token (smudge-api-retrieve-oauth2-token))))
("Accept" . "application/json")
("Content-Type" . "application/json")
("Content-Length" . ,(length data)))
("Content-Length" . ,(number-to-string (length data))))
:type method
:parser (lambda ()
(let ((json-object-type 'hash-table)
Expand Down

0 comments on commit 4a9c5b3

Please sign in to comment.