Fix a couple issues with settings reset on web & electron (#3564)

* Fix a couple issues with settings reset on web & electron

* A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest)

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Jess Frazelle <jessfraz@users.noreply.github.com>
This commit is contained in:
Adam Sunderland
2024-08-20 14:06:39 -04:00
committed by GitHub
parent b3dc3ff78c
commit 8a66d0df76
6 changed files with 15 additions and 2 deletions

View File

@ -407,6 +407,9 @@ const getProjectSettingsFilePath = async (projectPath: string) => {
}
export const getInitialDefaultDir = async () => {
if (!window.electron) {
return ''
}
const dir = await window.electron.getPath('documents')
return window.electron.path.join(dir, PROJECT_FOLDER)
}
@ -447,6 +450,12 @@ export const readAppSettingsFile = async () => {
}
const configToml = await window.electron.readFile(settingsPath)
const configObj = parseAppSettings(configToml)
if (!configObj.app) {
return Promise.reject(new Error('config.app is falsey'))
}
if (!configObj.app.projectDirectory) {
configObj.app.projectDirectory = await getInitialDefaultDir()
}
return configObj
}