Fix but that may cause an endless loop.

This commit is contained in:
Jørn Åne 2016-08-15 20:37:25 +02:00
parent fdf6e29990
commit 2aa0839120
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ class NerdepitsaActivity implements RepeatingActivity {
public function nextDate(DateTimeImmutable $date) {
if ($date->format('H') > 19)
return $this->nextDate($date->add(new DateInterval('P1D')));
return $this->nextDate($date->add(new DateInterval('P1D'))->setTime(19, 0, 0));
$date = $date->setTime(19, 0, 0);
if ($date->format('N') != 5)
return $this->nextDate($date->add(new DateInterval('P1D')));
@ -20,7 +20,7 @@ class NerdepitsaActivity implements RepeatingActivity {
public function prevDate(DateTimeImmutable $date) {
if ($date->format('H') < 19)
return $this->prevDate($date->sub(new DateInterval('P1D')));
return $this->prevDate($date->sub(new DateInterval('P1D'))->setTime(19, 0, 0));
$date = $date->setTime(19, 0, 0);
if ($date->format('N') != 5)
return $this->prevDate($date->sub(new DateInterval('P1D')));