Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Commit

Permalink
Merge pull request #2 from jaroslawp/ec-4.0
Browse files Browse the repository at this point in the history
Fix meeting response proposed start and end time by @jaroslawp
  • Loading branch information
advancingu authored May 29, 2017
2 parents e881e89 + f87e5a4 commit 8bee5f2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions interfaces/exchangeCalendar/mivExchangeCalendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -5570,8 +5570,10 @@ if (this.debug) this.logInfo(" ;;;; rrule:"+rrule.icalProperty.icalString);
var proposeEnd = this.tryToSetDateValue(input.proposeEnd,"");
var proposeNewTime = false;

input.proposeStart = cal.toRFC3339(proposeStart.getInTimezone(this.globalFunctions.ecUTC()));
input.proposeEnd = cal.toRFC3339(proposeEnd.getInTimezone( this.globalFunctions.ecUTC()));
if (proposeStart)
input.proposeStart = cal.toRFC3339(proposeStart.getInTimezone(this.globalFunctions.ecUTC()));
if (proposeEnd)
input.proposeEnd = cal.toRFC3339(proposeEnd.getInTimezone( this.globalFunctions.ecUTC()));

if( input.proposeStart && input.proposeEnd ){
proposeNewTime = true;
Expand Down

0 comments on commit 8bee5f2

Please sign in to comment.