mirror of
https://github.com/EndPwnArchive/endpwn3.git
synced 2024-08-15 00:23:30 +00:00
more fucking cache busting shit
This commit is contained in:
parent
8c7be7e71d
commit
197b92c21a
2 changed files with 6 additions and 6 deletions
|
@ -20,6 +20,12 @@
|
|||
// wait until DOM is ready so that error messages can display properly
|
||||
window.onload = () => {
|
||||
|
||||
// install endpwn
|
||||
var o = JSON.parse(fs.readFileSync(exports.data + '/settings.json', 'utf8')); // load settings.json
|
||||
o['WEBAPP_ENDPOINT'] = 'https://endpwn.github.io/endpwn3'; // aim the app at stage 0
|
||||
o['WEBAPP_PATH'] = '/app?_=' + Date.now(); // cache busting
|
||||
fs.writeFileSync(exports.data + '/settings.json', JSON.stringify(o, null, 2)); // commit changes to disk
|
||||
|
||||
// dont try doing anything if running in a browser
|
||||
if (navigator.userAgent.indexOf('discord') == -1) return;
|
||||
|
||||
|
|
|
@ -36,12 +36,6 @@
|
|||
// disable that obnoxious warning about not pasting shit in the console
|
||||
wc.findFunc("SELF_XSS_HEADER")[1].exports.consoleWarning = e => { };
|
||||
|
||||
// install endpwn pointed at EndPwn3
|
||||
$api.settings.set('WEBAPP_ENDPOINT', 'https://endpwn.github.io/endpwn3');
|
||||
|
||||
// in case we're on an old version of Discord, we set the path to /app
|
||||
$api.settings.set('WEBAPP_PATH', '/app');
|
||||
|
||||
});
|
||||
|
||||
// load EPAPI
|
||||
|
|
Loading…
Reference in a new issue