tasktimer icon indicating copy to clipboard operation
tasktimer copied to clipboard

README Variable

Open dustingraham opened this issue 5 years ago • 1 comments

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.

dustingraham avatar Jan 05 '20 06:01 dustingraham

Right. thanks @dustingraham

onury avatar Jan 29 '20 23:01 onury