Skip to content

Commit

Permalink
[BUGFIX] Fix range string calculation in DateRange facet
Browse files Browse the repository at this point in the history
Closes #4087
  • Loading branch information
derhansen committed Jun 6, 2024
1 parent a9bae2f commit 912eeb6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public function __construct(
protected function getRangeString(): string
{
$from = $this->startRequested === null ? '' : $this->startRequested->format('Ymd') . '0000';
$till = $this->endRequested === null ? '' : $this->endRequested->format('Ymd') . '0000';
$till = $this->endRequested === null ? '' : $this->endRequested->format('Ymd') . '2359';
return $from . '-' . $till;
}

Expand Down

0 comments on commit 912eeb6

Please sign in to comment.