This repository was archived by the owner on Jul 2, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
interfaces/exchangeCalendar Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -5566,12 +5566,14 @@ if (this.debug) this.logInfo(" ;;;; rrule:"+rrule.icalProperty.icalString);
55665566 }
55675567 if (this.debug) this.logInfo(" -------------- messageDisposition="+messageDisposition);
55685568
5569- var proposeStart = this.tryToSetDateValue(input.proposeStart,cal.now() );
5570- var proposeEnd = this.tryToSetDateValue(input.proposeEnd,cal.now() );
5569+ var proposeStart = this.tryToSetDateValue(input.proposeStart,"" );
5570+ var proposeEnd = this.tryToSetDateValue(input.proposeEnd,"" );
55715571 var proposeNewTime = false;
55725572
5573- input.proposeStart = cal.toRFC3339(proposeStart.getInTimezone(this.globalFunctions.ecUTC()));
5574- input.proposeEnd = cal.toRFC3339(proposeEnd.getInTimezone( this.globalFunctions.ecUTC()));
5573+ if (proposeStart)
5574+ input.proposeStart = cal.toRFC3339(proposeStart.getInTimezone(this.globalFunctions.ecUTC()));
5575+ if (proposeEnd)
5576+ input.proposeEnd = cal.toRFC3339(proposeEnd.getInTimezone( this.globalFunctions.ecUTC()));
55755577
55765578 if( input.proposeStart && input.proposeEnd ){
55775579 proposeNewTime = true;
You can’t perform that action at this time.
0 commit comments