Skip to content

Commit

Permalink
Fix #426 (#428)
Browse files Browse the repository at this point in the history
Fix #426
  • Loading branch information
PierrickVoulet authored Nov 7, 2023
1 parent 097b9c6 commit f835981
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion advanced/calendar.gs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ function listNext10Events() {
// All-day event.
const start = new Date(event.start.date);
console.log('%s (%s)', event.summary, start.toLocaleDateString());
return;
continue;
}
const start = new Date(event.start.dateTime);
console.log('%s (%s)', event.summary, start.toLocaleString());
Expand Down

0 comments on commit f835981

Please sign in to comment.