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
one bit of good news is that this at least maxes out at MAX_PREVIOUS_FRAMES, so we don't keep more than 50 + 10 (if the 10 longest LoAFs aren't in the most recent 50), but yeah
latestProcessingEnd
is declared without a value, so it's initially undefined.When comparing the undefined value with
entry.processingEnd
, the result is alwaysNaN
.And finally, when the
NaN
value is compared withloaf.startTime
the result is always false, so the LoAF entries are always kept.The text was updated successfully, but these errors were encountered: