diff --git a/lib/logic/common/throttler.dart b/lib/logic/common/throttler.dart index 65fd4ee1..8c6df454 100644 --- a/lib/logic/common/throttler.dart +++ b/lib/logic/common/throttler.dart @@ -25,6 +25,7 @@ class Throttler { void _callAction() { _action?.call(); // If we have an action queued up, complete it. + _action = null; // Once an action is called, do not call the same action again unless another action is queued. _timer = null; }