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 tray;
upgrader();
const currentSettings = () => {
const localStorage = electronSettings.get(`${app_version_as_string}.appContext.settings`);
if (localStorage) {
@ -25,6 +23,8 @@ const currentSettings = () => {
};
const createWindow = () => {
upgrader();
let appIcon = "";
let trayIcon = "";
if (require("os").platform() === "win32") {
@ -56,7 +56,7 @@ const createWindow = () => {
showOnStart = false;
}
}
const splashTimeOut = 4000;
const splashTimeOut = 5000;
if (showOnStart) {
mainWindow = Splashscreen.initSplashScreen({
windowOpts: mainWindowOpt,