mirror of
https://github.com/EndPwnArchive/endpwn3.git
synced 2024-08-15 00:23:30 +00:00
pls work
This commit is contained in:
parent
967850d6a9
commit
881ae23ca8
1 changed files with 20 additions and 10 deletions
30
shared.js
30
shared.js
|
@ -35,20 +35,30 @@
|
||||||
fetch('https://endpwn.github.io/changelog.md?_=' + Date.now()).then(r => r.text()).then(l => {
|
fetch('https://endpwn.github.io/changelog.md?_=' + Date.now()).then(r => r.text()).then(l => {
|
||||||
|
|
||||||
// we're racing discord's initialization procedures; try and hit a timing sweetspot
|
// we're racing discord's initialization procedures; try and hit a timing sweetspot
|
||||||
setTimeout(() => {
|
setTimeout(function () {
|
||||||
|
|
||||||
// get the changelog object
|
try {
|
||||||
var log = $api.util.findFuncExports('changeLog');
|
|
||||||
var data = l.split(';;');
|
|
||||||
|
|
||||||
// set the date
|
// get the changelog object
|
||||||
if (log.changeLog.date <= data[0])
|
var log = $api.util.findFuncExports('changeLog');
|
||||||
log.changeLog.date = data[0];
|
var data = l.split(';;');
|
||||||
|
|
||||||
// prepend to the changelog body
|
// set the date
|
||||||
log.changeLog.body = data[1] + '\n\n' + log.changeLog.body;
|
if (log.changeLog.date <= data[0])
|
||||||
|
log.changeLog.date = data[0];
|
||||||
|
|
||||||
}, 200);
|
// prepend to the changelog body
|
||||||
|
log.changeLog.body = data[1] + '\n\n' + log.changeLog.body;
|
||||||
|
|
||||||
|
}
|
||||||
|
catch (e) {
|
||||||
|
|
||||||
|
// it failed, try again in 10 ms
|
||||||
|
setTimeout(callee, 10);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}, 100);
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue