Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions lib/providers/app_state_provider.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2485,6 +2485,7 @@ class AppStateProvider extends ChangeNotifier with WidgetsBindingObserver {
_autoPingTimer.stop();
_rxWindowTimer.stop();
_cooldownTimer.stop();
_manualPingCooldownTimer.stop();
if (_autoPingEnabled) {
if (!_userRequestedDisconnect) {
_playDisconnectAlert();
Expand Down Expand Up @@ -2565,6 +2566,7 @@ class AppStateProvider extends ChangeNotifier with WidgetsBindingObserver {
_autoPingTimer.stop();
_rxWindowTimer.stop();
_cooldownTimer.stop();
_manualPingCooldownTimer.stop();
_autoPingEnabled = false;
_idleAutoStopReference = null;

Expand Down Expand Up @@ -2848,6 +2850,7 @@ class AppStateProvider extends ChangeNotifier with WidgetsBindingObserver {

// Stop all countdown timers
_cooldownTimer.stop();
_manualPingCooldownTimer.stop();
_autoPingTimer.stop();
_rxWindowTimer.stop();

Expand Down Expand Up @@ -3705,6 +3708,7 @@ class AppStateProvider extends ChangeNotifier with WidgetsBindingObserver {
_rxWindowTimer.stop();
_discoveryWindowTimer.stop();
_cooldownTimer.stop();
_manualPingCooldownTimer.stop();

// 7. End noise floor session
await _endNoiseFloorSession();
Expand Down Expand Up @@ -6247,6 +6251,7 @@ class AppStateProvider extends ChangeNotifier with WidgetsBindingObserver {
_bluetoothService.dispose();
_audioService.dispose();
_cooldownTimer.dispose();
_manualPingCooldownTimer.dispose();
_autoPingTimer.dispose();
_rxWindowTimer.dispose();
_discoveryWindowTimer.dispose();
Expand Down
Loading