Skip to content

Commit

Permalink
Fix the URL checkCoralCache() uses.
Browse files Browse the repository at this point in the history
Refs #1722
  • Loading branch information
arantius committed Jul 24, 2013
1 parent c0f91c1 commit 524a7c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/util/checkCoralCache.js
Expand Up @@ -8,13 +8,13 @@ const XMLHttpRequest = Components.Constructor(

var gCheckIsRunning = false;

function checkCoralCache(msg) {
function checkCoralCache() {
if (!gCheckIsRunning) {
gCheckIsRunning = true;
var req = new XMLHttpRequest();
req.onerror = GM_util.hitch(null, onError, req);
req.onload = GM_util.hitch(null, onLoad, req);
req.open('get', 'http://userscripts.org/scripts/source/1.meta.js');
req.open('get', 'http://userscripts.org.nyud.net/scripts/source/1.meta.js');
req.send();
}

Expand Down

0 comments on commit 524a7c7

Please sign in to comment.