jacksonh / manos

Manos is an easy to use, easy to test, high performance web application framework that stays out of your way and makes your life ridiculously simple.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TimeOut.cs - ShouldContinueToRepeat

headsling opened this issue · comments

public bool ShouldContinueToRepeat ()
{
  return !stopped || repeat.ShouldContinueToRepeat ();  
}

should be -
return stopped || repeat.ShouldContinueToRepeat ();

Actually I think it needs to be !stopped && repeat.ShouldContinueToRepeat ().

Thanks for the report.

bah! of course..

Good catch though, thanks for tracking that down.