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 => {
|
||||
|
||||
// we're racing discord's initialization procedures; try and hit a timing sweetspot
|
||||
setTimeout(() => {
|
||||
setTimeout(function () {
|
||||
|
||||
// get the changelog object
|
||||
var log = $api.util.findFuncExports('changeLog');
|
||||
var data = l.split(';;');
|
||||
try {
|
||||
|
||||
// set the date
|
||||
if (log.changeLog.date <= data[0])
|
||||
log.changeLog.date = data[0];
|
||||
// get the changelog object
|
||||
var log = $api.util.findFuncExports('changeLog');
|
||||
var data = l.split(';;');
|
||||
|
||||
// prepend to the changelog body
|
||||
log.changeLog.body = data[1] + '\n\n' + log.changeLog.body;
|
||||
// set the date
|
||||
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