summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn McLear <john@mclear.co.uk>2015-01-18 13:26:56 +0000
committerJohn McLear <john@mclear.co.uk>2015-01-18 13:26:56 +0000
commit3c692faa8ca21ff804edfdcbe3f8e2ba00ed6c10 (patch)
treed9a08a6a55a77346a433950e00d73ca5a5fbf3d9
parentdf47bb9b040f40c881977fb83611ca7c477db2c2 (diff)
parent3c6db077ed453c491a61707081928242f7ad4a5f (diff)
downloadetherpad-lite-3c692faa8ca21ff804edfdcbe3f8e2ba00ed6c10.zip
Merge pull request #2465 from Gared/change_domain_plugins_json
Change domain for plugins.json request
-rw-r--r--src/static/js/pluginfw/installer.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/static/js/pluginfw/installer.js b/src/static/js/pluginfw/installer.js
index 90bd9aa2..35e42c17 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)