fix: prevent electron from pausing timer executions

Our pings could be paused when our app is backgrounded.
This commit is contained in:
talksik
2026-04-12 09:19:46 -07:00
parent 6ff2cb77f8
commit 3ec6a8d635
+1
View File
@@ -36,6 +36,7 @@ const createWindow = () => {
frame: false,
webPreferences: {
preload: path.join(__dirname, 'preload.js'),
backgroundThrottling: false,
},
});