From 1ead5559406da983cdb8244294349c4b94624b87 Mon Sep 17 00:00:00 2001 From: Skylar Grant Date: Sun, 18 Dec 2022 21:39:07 -0500 Subject: [PATCH] sadf --- functions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.js b/functions.js index 26f023d..ccae34b 100644 --- a/functions.js +++ b/functions.js @@ -228,7 +228,7 @@ const functions = { // set shutdown flag to 1 config.status.shutdown = 1; // Check if this was invoked from a 'quit' file, if so, delete the file - if (fs.existsSync('./quit')) fs.unlink('./quit', (err) => { throw err; }); + if (fs.existsSync('./quit')) fs.unlink('./quit', (err) => { if (err) throw err; }); // If the auger is enabled, disable it if (config.status.auger == 1) { config.status.auger = 0;