Fix: App Not Stopping correctly + Better Logs for end :)

This commit is contained in:
MasterAcnolo
2026-02-17 21:09:09 +01:00
parent adb36e3fa2
commit 5d776594fc

View File

@@ -263,10 +263,12 @@ app.whenReady().then(async () => {
});
app.on("window-all-closed", () => {
logger.info("All Window Closed, shuting down app");
logger.info("Shuting Down App...");
app.quit();
});
app.on("before-quit", () => {
logSessionEnd()
stopRPC()
logger.info("All Services Stopped. Have a nice day!")
logSessionEnd()
});