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 authored and dkd-kaehm committed Jun 6, 2024
1 parent 2e4e166 commit e583bd9
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 e583bd9

Please sign in to comment.