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
lastStart is always less than current, it cannot be bigger than current time, that means remaining = (lastStart + duration) - current and if we reorder remaining = (lastStart - current) + duration - duration is always bigger than remaining and val countdownTime = max(remaining, duration) always will return duration in CountdownThreadHandler .
The text was updated successfully, but these errors were encountered:
lastStart
is always less thancurrent
, it cannot be bigger than current time, that meansremaining = (lastStart + duration) - current
and if we reorderremaining = (lastStart - current) + duration
- duration is always bigger than remaining andval countdownTime = max(remaining, duration)
always will return duration inCountdownThreadHandler
.The text was updated successfully, but these errors were encountered: