diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-02-12 21:11:58 -0200 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-02-12 21:11:58 -0200 |
commit | 2f0c2c3d29e24873dbe9f66718e8478ed1472ca6 (patch) | |
tree | 90ba6f290e04a75a734fb615a58ab5a2c07d3a08 /sx-request.el | |
parent | 9356a6a039f0d8cf8d9f31e42e8007617c58577d (diff) | |
parent | 3855607ae779165e33f5f1834bedad42d1583971 (diff) |
Merge branch 'images' into print-question-without-temp-buffer
Diffstat (limited to 'sx-request.el')
-rw-r--r-- | sx-request.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sx-request.el b/sx-request.el index 2e650b4..3bcea21 100644 --- a/sx-request.el +++ b/sx-request.el @@ -160,7 +160,7 @@ the main content of the response is returned." (url-inhibit-uncompression t) (url-request-data (sx-request--build-keyword-arguments args nil)) (request-url (concat sx-request-api-root method)) - (url-request-method (and request-method (symbol-name request-method))) + (url-request-method (and request-method (upcase (symbol-name request-method)))) (url-request-extra-headers '(("Content-Type" . "application/x-www-form-urlencoded"))) (response-buffer (url-retrieve-synchronously request-url))) |