File tree 1 file changed +4
-2
lines changed
calendar/interface/exchangeCalendar
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -2597,7 +2597,8 @@ calExchangeCalendar.prototype = {
2597
2597
let offset = cal . createDuration ( ) ;
2598
2598
offset . weeks = - 5 ;
2599
2599
2600
- aRangeStart = cal . now ( ) . addDuration ( offset ) ;
2600
+ aRangeStart = cal . now ( )
2601
+ aRangeStart . addDuration ( offset ) ;
2601
2602
2602
2603
// If cache already contains a bigger range, use it
2603
2604
if ( this . startDate
@@ -2614,7 +2615,8 @@ calExchangeCalendar.prototype = {
2614
2615
let offset = cal . createDuration ( ) ;
2615
2616
offset . weeks = 5 ;
2616
2617
2617
- aRangeEnd = cal . now ( ) . addDuration ( offset ) ;
2618
+ aRangeEnd = cal . now ( )
2619
+ aRangeEnd . addDuration ( offset ) ;
2618
2620
2619
2621
// If cache already contains a bigger range, use it
2620
2622
if ( ( this . endDate ) && ( this . endDate . compare ( aRangeEnd ) > 0 ) ) {
You can’t perform that action at this time.
0 commit comments