Work on launcher and config

This commit is contained in:
Scott Idem
2022-04-16 18:14:07 -04:00
parent 7c13beea0a
commit d17d475dba
2 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
{
"account_id": null,
"event_id": null,
"event_device_id": null
"event_device_id": null,
"event_location_id": null,
"event_session_id": null,
"event_presentation_id": null,

View File

@@ -123,14 +123,14 @@ ipcMain.handle('import_config', async (event, config_data) => {
if (fs.existsSync(host_file_cache_path)) {
console.log('Host file cache path exists: '+host_file_cache_path);
} else {
fs.mkdirSync(host_file_cache_path);
fs.mkdirSync(host_file_cache_path, true);
console.log('Host file cache path created: '+host_file_cache_path);
}
if (fs.existsSync(host_file_temp_path)) {
console.log('Host file temp path exists: '+host_file_temp_path);
} else {
fs.mkdirSync(host_file_temp_path);
fs.mkdirSync(host_file_temp_path, true);
console.log('Host file temp path created: '+host_file_temp_path);
}