diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-01-07 22:51:25 -0200 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-01-07 22:51:33 -0200 |
commit | 2278f45dfc4a21dd1a9c8757d0539e6c460ac43d (patch) | |
tree | 9b4cbbded499006b4b4fe3ee89308978a534a6ce | |
parent | 976cf5e95dce4fd4d6f74350c8b9ea66aa13c0fd (diff) |
Use http instead of https for our data requests
-rw-r--r-- | sx-request.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sx-request.el b/sx-request.el index f892367..9a788ca 100644 --- a/sx-request.el +++ b/sx-request.el @@ -217,8 +217,8 @@ Currently returns nil." ;;; Our own generated data -(defvar sx-request--data-url-format - "https://raw.githubusercontent.com/vermiculus/sx.el/data/data/%s.el" +(defconst sx-request--data-url-format + "http://raw.githubusercontent.com/vermiculus/sx.el/data/data/%s.el" "Url of the \"data\" directory inside the SX `data' branch.") (defun sx-request-get-data (file) |