diff options
author | Jonathan Leech-Pepin <jonathan.leechpepin@gmail.com> | 2014-11-14 14:49:28 -0500 |
---|---|---|
committer | Jonathan Leech-Pepin <jonathan.leechpepin@gmail.com> | 2014-11-14 14:49:28 -0500 |
commit | ff9298fdf3f35a6c110375445639f9e7bb41ec7f (patch) | |
tree | 45f076b836b6c8558bf2d674e669b4e72f939e24 | |
parent | 5691471569cba78418e7b53856a77948949b81d9 (diff) |
Set `sx-request-api-root` to use `https` instead of `http`.
This will prevent loss of authentication token when using authentication.
-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 b16fd9a..6dc54e7 100644 --- a/sx-request.el +++ b/sx-request.el @@ -41,7 +41,7 @@ "The current version of the API.") (defconst sx-request-api-root - (format "http://api.stackexchange.com/%s/" sx-request-api-version) + (format "https://api.stackexchange.com/%s/" sx-request-api-version) "The base URL to make requests from.") (defcustom sx-request-silent-p |