You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
EventLagMonitor creates an interval function with setInterval, but this repeating function only is stopped when the computed lag has fallen sufficiently.
If the progress bar is stopped and restarted, the repeating function might be left running, so there will now be two such functions.
Although this might not seem like a problem because the two functions would be evaluating the same thing, it's not expected behavior.
The text was updated successfully, but these errors were encountered:
EventLagMonitor creates an interval function with
setInterval
, but this repeating function only is stopped when the computed lag has fallen sufficiently.If the progress bar is stopped and restarted, the repeating function might be left running, so there will now be two such functions.
Although this might not seem like a problem because the two functions would be evaluating the same thing, it's not expected behavior.
The text was updated successfully, but these errors were encountered: