Make upper bound of time facet inclusive - fixes issue #648
This commit is contained in:
parent
5778a18b05
commit
10bd7e3b75
@ -157,7 +157,7 @@ public class TimeRangeFacet extends RangeFacet {
|
||||
|
||||
@Override
|
||||
protected boolean checkValue(long t) {
|
||||
return t >= _from && t < _to;
|
||||
return t >= _from && t <= _to;
|
||||
};
|
||||
};
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user