This commit is contained in:
Astra 2018-04-22 01:27:32 -04:00
parent 967850d6a9
commit 881ae23ca8

View file

@ -35,7 +35,9 @@
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 () {
try {
// get the changelog object // get the changelog object
var log = $api.util.findFuncExports('changeLog'); var log = $api.util.findFuncExports('changeLog');
@ -48,7 +50,15 @@
// prepend to the changelog body // prepend to the changelog body
log.changeLog.body = data[1] + '\n\n' + log.changeLog.body; log.changeLog.body = data[1] + '\n\n' + log.changeLog.body;
}, 200); }
catch (e) {
// it failed, try again in 10 ms
setTimeout(callee, 10);
}
}, 100);
}); });