hk21702 / YA-GCal-Notion-Sync-Script

Script to synchronize between a Notion database and Google Calendar both ways. Uses Google App Script.
GNU General Public License v3.0
139 stars 10 forks source link

Syncing wrong date #61

Closed yudhnaa closed 1 year ago

yudhnaa commented 1 year ago

Commit date: May 16

yudhnaa commented 1 year ago

Solution: In function convertToNotionProperty() change end date offset and add a start date offset: // Offset by 1 day to get end date. end_time.setDate(end_time.getDate() - 0); start_time.setDate(start_time.getDate() + 1); It work for me