Fixing a bug in boot

- When booting for the first time, the generated NUID was saved to the wrong key
This commit is contained in:
Logan Cusano
2024-03-08 23:36:02 -05:00
parent d48d1155cb
commit 32f827fe5e

View File

@@ -24,15 +24,13 @@ async function boot() {
*/
async function firstTimeBoot() {
// Generate a new ID for the node
localNodeConfig.node.id = generateUniqueID();
localNodeConfig.node.nuid = await generateUniqueID();
console.log(`Generated a new unique ID for this node: '${localNodeConfig.node.nuid}'`);
// Update the config with the new ID
updateId(localNodeConfig.node.nuid);
console.log("Updated the config with the new node ID");
// TODO - Create the config file with the ID given and replace the update above
// TODO - Check if the system is linux or windows and set the 'type' param in DAB
// TODO - Implement web server so users can update radio systems easily
// TODO - Implement logic to check if the presets are set
return