mirror of
https://github.com/EndPwnArchive/endpwn3.git
synced 2024-08-15 00:23:30 +00:00
(untested) refetch goodies on an interval
This commit is contained in:
parent
b5f33ede39
commit
0cd80b7f13
1 changed files with 11 additions and 5 deletions
16
shared.js
16
shared.js
|
@ -23,10 +23,16 @@
|
||||||
users: {}
|
users: {}
|
||||||
};
|
};
|
||||||
|
|
||||||
// fetch goodies.json
|
function fetchGoodies() {
|
||||||
fetch('https://endpwn.cathoderay.tube/goodies.json?_=' + Date.now())
|
// fetch goodies.json
|
||||||
.then(x => x.json())
|
fetch('https://endpwn.cathoderay.tube/goodies.json?_=' + Date.now())
|
||||||
.then(r => __goodies = r);
|
.then(x => x.json())
|
||||||
|
.then(r => __goodies = r);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fetch goodies now and every half hour
|
||||||
|
fetchGoodies();
|
||||||
|
setInterval(fetchGoodies, 1800000);
|
||||||
|
|
||||||
// early init payload
|
// early init payload
|
||||||
document.addEventListener('ep-prepared', () => {
|
document.addEventListener('ep-prepared', () => {
|
||||||
|
@ -107,4 +113,4 @@
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
})();
|
})();
|
||||||
|
|
Loading…
Reference in a new issue