[Splash > Backend] Minor source cleanup

This commit is contained in:
Ducko 2022-03-24 14:09:59 +00:00
parent ed445f830f
commit 2214be211f
1 changed files with 3 additions and 5 deletions

View File

@ -101,14 +101,12 @@ const launchSplashWindow = (startMinimized) => {
if (process.platform !== 'darwin') win.on('closed', () => { if (!launchedMainWindow) app.quit(); });
wc.once('dom-ready', () => {
if (oaConfig.themeSync !== false) try { // Inject themesync CSS
wc.insertCSS(JSON.parse(fs.readFileSync(join(paths.getUserData(), 'userDataCache.json'), 'utf8')).openasarSplashCSS);
} catch (e) { }
if (oaConfig.themeSync !== false) wc.insertCSS(JSON.parse(fs.readFileSync(join(paths.getUserData(), 'userDataCache.json'), 'utf8')).openasarSplashCSS);
if (oaConfig.splashText === true) try {
if (oaConfig.splashText === true) {
const buildInfo = require('../utils/buildInfo.js');
wc.executeJavaScript(`debug.textContent = '${buildInfo.releaseChannel} ${buildInfo.version}\\nOpenAsar ${oaVersion}'`);
} catch (e) { }
}
});
if (!startMinimized) win.once('ready-to-show', () => win.show());