Remove auto restart timer hotfix

This commit is contained in:
Wizzard 2023-09-01 09:02:44 -04:00
parent 187e008bdc
commit ac502936c9
1 changed files with 0 additions and 6 deletions

View File

@ -7,7 +7,6 @@ const config = JSON.parse(fs.readFileSync("config.json"));
const updateInterval = 5000; const updateInterval = 5000;
const retryInterval = 30000; const retryInterval = 30000;
const maxUptime = 3 * 60 * 60 * 1000; // Maximum uptime before restart (3 hours)
let rp; let rp;
let startTime = Date.now(); let startTime = Date.now();
@ -72,11 +71,6 @@ async function updateStatus() {
console.log("Discord status updated. Current track: " + data.trackName + ", Artist: " + data.artist); console.log("Discord status updated. Current track: " + data.trackName + ", Artist: " + data.artist);
// check if uptime exceeds maximum uptime
if ((Date.now() - startTime) > maxUptime) {
console.log("Max uptime reached, restarting process...");
process.exit(0);
}
setTimeout(updateStatus, updateInterval); setTimeout(updateStatus, updateInterval);
} catch (error) { } catch (error) {