diff options
author | Sean Allred <code@seanallred.com> | 2015-01-04 15:21:55 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2015-01-04 15:21:55 -0500 |
commit | 1b5fd39d84cfc3138c2619631eebe508e7a0c2f9 (patch) | |
tree | dc4b74ed834aadc5992e92419f5247eb0408a7a4 /sx-compose.el | |
parent | d20f7e140d33b230cdaddd08cc6e2dfe75fd1e2b (diff) |
Use symbols for url-request-method
Diffstat (limited to 'sx-compose.el')
-rw-r--r-- | sx-compose.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sx-compose.el b/sx-compose.el index d27d2f3..8a8637b 100644 --- a/sx-compose.el +++ b/sx-compose.el @@ -188,7 +188,7 @@ respectively added locally to `sx-compose-before-send-hook' and (.comment_id 'comments) (t 'answers)) :auth 'warn - :url-method "POST" + :url-method 'post :filter sx-browse-filter :site site :keywords (sx-compose--generate-keywords is-question) @@ -196,7 +196,7 @@ respectively added locally to `sx-compose-before-send-hook' and :submethod 'edit))) (lambda () (sx-method-call 'questions :auth 'warn - :url-method "POST" + :url-method 'post :filter sx-browse-filter :site site :keywords (sx-compose--generate-keywords is-question) |