fix: The app was unable to load the settings in some case.

This commit is contained in:
Quentin “Storm1er” Decaunes 2020-03-26 08:24:47 +01:00
parent f78e3c52b8
commit 6b600ccc38

View File

@ -14,8 +14,6 @@ const app_version_as_string = app.getVersion().replace(/\./g, "_") + (isDev ? "-
let mainWindow; let mainWindow;
let tray; let tray;
upgrader();
const currentSettings = () => { const currentSettings = () => {
const localStorage = electronSettings.get(`${app_version_as_string}.appContext.settings`); const localStorage = electronSettings.get(`${app_version_as_string}.appContext.settings`);
if (localStorage) { if (localStorage) {
@ -25,6 +23,8 @@ const currentSettings = () => {
}; };
const createWindow = () => { const createWindow = () => {
upgrader();
let appIcon = ""; let appIcon = "";
let trayIcon = ""; let trayIcon = "";
if (require("os").platform() === "win32") { if (require("os").platform() === "win32") {
@ -56,7 +56,7 @@ const createWindow = () => {
showOnStart = false; showOnStart = false;
} }
} }
const splashTimeOut = 4000; const splashTimeOut = 5000;
if (showOnStart) { if (showOnStart) {
mainWindow = Splashscreen.initSplashScreen({ mainWindow = Splashscreen.initSplashScreen({
windowOpts: mainWindowOpt, windowOpts: mainWindowOpt,