Disable telemetry

This commit is contained in:
LeenkxTeam 2025-01-24 06:20:13 +00:00
parent 52644b746c
commit 60a06e6132

View File

@ -185,11 +185,12 @@ function onState (err, _state) {
// Runs a few seconds after the app loads, to avoid slowing down startup time
function delayedInit () {
telemetry.send(state)
// Disable telemetry
// telemetry.send(state)
// Send telemetry data every 12 hours, for users who keep the app running
// for extended periods of time
setInterval(() => telemetry.send(state), 12 * 3600 * 1000)
// setInterval(() => telemetry.send(state), 12 * 3600 * 1000)
// Warn if the download dir is gone, eg b/c an external drive is unplugged
checkDownloadPath()