We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b19dcff commit fd8cb23Copy full SHA for fd8cb23
package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "wh3mm",
3
"productName": "wh3mm",
4
- "version": "1.25.0",
+ "version": "1.25.1",
5
"description": "WH3 Mod Manager",
6
"main": ".webpack/main",
7
"scripts": {
src/index.ts
@@ -68,13 +68,14 @@ const readConfig = async (mainWindow: BrowserWindow) => {
68
try {
69
const appState = await readAppConfig();
70
if (!appData.hasReadConfig) {
71
- appData.hasReadConfig = true;
72
setStartingAppState(appState);
73
}
74
mainWindow.webContents.send("fromAppConfig", appState);
75
} catch (err) {
76
mainWindow.webContents.send("failedReadingConfig");
77
console.log(err);
+ } finally {
78
+ appData.hasReadConfig = true;
79
80
};
81
0 commit comments