script/bitlove-enclosures.js: use api.bitlove.org over https

This commit is contained in:
Astro 2016-08-11 22:21:21 +02:00
parent d560456efa
commit 2a46ab6142
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ function doSend(urls, cb) {
}).join("&");
var cl = new XHR();
cl.open('GET', 'http://api.bitlove.org/by-enclosure.json?' + q);
cl.open('GET', 'https://api.bitlove.org/by-enclosure.json?' + q);
cl.onreadystatechange = function() {
if (this.readyState == this.DONE) {
var response;