Reduce heartbeat interval from 120 seconds to 90 seconds for improved responsiveness

This commit is contained in:
ImBenji
2025-08-22 16:59:15 +01:00
parent 396229a9cb
commit c294bc5c08

View File

@@ -81,8 +81,8 @@ void initHeartbeat() {
print("Error sending heartbeat: $e"); print("Error sending heartbeat: $e");
} }
// Wait 120 seconds (2 minutes) before sending the next heartbeat // Wait 90 seconds (1.5 minutes) before sending the next heartbeat
await Future.delayed(Duration(seconds: 120)); await Future.delayed(Duration(seconds: 90));
} }
}, null); }, null);