Skip to content
Snippets Groups Projects
Unverified Commit a2e1edbe authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

history_map: filter_until is inclusive

parent 4d044fb9
No related branches found
No related tags found
No related merge requests found
......@@ -1332,7 +1332,11 @@ sub map_history {
if ( $filter_until
and $filter_until =~ m{ ^ (\d+) [.] (\d+) [.] (\d+) $ }x )
{
$filter_until = $parser->parse_datetime($filter_until);
$filter_until = $parser->parse_datetime($filter_until)->set(
hour => 23,
minute => 59,
second => 58
);
}
else {
$filter_until = undef;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment