💄 Optimize file viewer

This commit is contained in:
2025-07-30 00:29:26 +08:00
parent 97226ae96b
commit e4bb031138
3 changed files with 46 additions and 76 deletions

View File

@@ -122,7 +122,7 @@ class WebSocketService {
void _scheduleHeartbeat() {
_heartbeatTimer?.cancel();
_heartbeatTimer = Timer.periodic(const Duration(seconds: 3), (_) {
_heartbeatTimer = Timer.periodic(const Duration(seconds: 60), (_) {
_beatTheHeart();
});
}