Skip to content

Commit bef1387

Browse files
committed
chore: remove async from _startKeepAliveTimer
1 parent 7f95e9b commit bef1387

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/state/connection/connection_cubit.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ class ConnectionCubit extends Cubit<ConnectionState> {
146146
);
147147
}
148148

149-
Future<void> _startKeepAliveTimer() async {
149+
void _startKeepAliveTimer() {
150150
if (_connectivityTimer == null || !_connectivityTimer!.isActive) {
151151
_connectivityTimer =
152152
Timer.periodic(_connectivityCheckInterval, (Timer timer) => _ping());

0 commit comments

Comments
 (0)