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
if (timer.tickCount >= 3600000) timer.stop();
I think this should be: if (timer.time.elapsed >= 3600000) timer.stop();
Or: if (timer.tickCount >= 3600) timer.stop();
Based on the comment that it should stop after an hour.
The text was updated successfully, but these errors were encountered:
https://github.com/onury/tasktimer/blame/master/README.md#L120
if (timer.tickCount >= 3600000) timer.stop();
I think this should be:
if (timer.time.elapsed >= 3600000) timer.stop();
Or:
if (timer.tickCount >= 3600) timer.stop();
Based on the comment that it should stop after an hour.
The text was updated successfully, but these errors were encountered: