Merge branch 'master' into filtering-improvements
This commit is contained in:
commit
58ad890227
1 changed files with 2 additions and 2 deletions
|
|
@ -150,8 +150,8 @@ public class CalendarAvailability extends IntegrationEntity {
|
|||
}
|
||||
|
||||
if (endDate == null) {
|
||||
return startDate.compareTo(filterStartDate) >= 0
|
||||
&& startDate.compareTo(filterEndDate) <= 0;
|
||||
return startDate.compareTo(filterStartDate) <= 0
|
||||
|| startDate.compareTo(filterEndDate) <= 0;
|
||||
}
|
||||
|
||||
Interval filterPeriod = new Interval(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue