From 3c6db077ed453c491a61707081928242f7ad4a5f Mon Sep 17 00:00:00 2001 From: Stefan Date: Sun, 18 Jan 2015 14:22:27 +0100 Subject: [PATCH] Change domain for plugins.json request --- src/static/js/pluginfw/installer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/static/js/pluginfw/installer.js b/src/static/js/pluginfw/installer.js index 90bd9aa27..35e42c171 100644 --- a/src/static/js/pluginfw/installer.js +++ b/src/static/js/pluginfw/installer.js @@ -61,7 +61,7 @@ exports.availablePlugins = null; var cacheTimestamp = 0; exports.getAvailablePlugins = function(maxCacheAge, cb) { - request("http://etherpad.org/plugins.json", function(er, response, plugins){ + request("http://static.etherpad.org/plugins.json", function(er, response, plugins){ if (er) return cb && cb(er); if(exports.availablePlugins && maxCacheAge && Math.round(+new Date/1000)-cacheTimestamp <= maxCacheAge) { return cb && cb(null, exports.availablePlugins)