Use https to download plugins.json
parent
4ecf0dfad2
commit
da86110f58
|
@ -61,7 +61,7 @@ exports.availablePlugins = null;
|
||||||
var cacheTimestamp = 0;
|
var cacheTimestamp = 0;
|
||||||
|
|
||||||
exports.getAvailablePlugins = function(maxCacheAge, cb) {
|
exports.getAvailablePlugins = function(maxCacheAge, cb) {
|
||||||
request("http://static.etherpad.org/plugins.json", function(er, response, plugins){
|
request("https://static.etherpad.org/plugins.json", function(er, response, plugins){
|
||||||
if (er) return cb && cb(er);
|
if (er) return cb && cb(er);
|
||||||
if(exports.availablePlugins && maxCacheAge && Math.round(+new Date/1000)-cacheTimestamp <= maxCacheAge) {
|
if(exports.availablePlugins && maxCacheAge && Math.round(+new Date/1000)-cacheTimestamp <= maxCacheAge) {
|
||||||
return cb && cb(null, exports.availablePlugins)
|
return cb && cb(null, exports.availablePlugins)
|
||||||
|
|
Loading…
Reference in New Issue