[MainWindow] Move themesync init to last to fix erroring half way through inject
This commit is contained in:
parent
af9bec3783
commit
8467b8bd33
1 changed files with 10 additions and 7 deletions
|
@ -17,13 +17,8 @@ const themesync = async () => {
|
|||
if (value !== pastValue) DiscordNative.userDataCache.cacheUserData(JSON.stringify(cached));
|
||||
};
|
||||
|
||||
setInterval(() => {
|
||||
try {
|
||||
themesync();
|
||||
} catch (e) { }
|
||||
}, 10000);
|
||||
themesync();
|
||||
|
||||
// Settings info version injection
|
||||
setInterval(() => {
|
||||
const host = [...document.querySelectorAll('[class^="socialLinks-"] + [class^="info-"] [class^="colorMuted-"]')].find(x => x.textContent.startsWith('Host '));
|
||||
if (!host || document.querySelector('#openasar-ver')) return;
|
||||
|
@ -54,4 +49,12 @@ el.appendChild(document.createTextNode(`[class^="socialLinks-"] + [class^="info-
|
|||
}`));
|
||||
document.body.appendChild(el);
|
||||
|
||||
openasar = {};
|
||||
openasar = {}; // Define global for any mods which want to know / etc
|
||||
|
||||
|
||||
setInterval(() => { // Try init themesync
|
||||
try {
|
||||
themesync();
|
||||
} catch (e) { }
|
||||
}, 10000);
|
||||
themesync();
|
Loading…
Reference in a new issue