isomerpages / isomercms-backend

A static website builder and host for the Singapore Government
5 stars 1 forks source link

fix: off-by-one error for month number #1294

Closed dcshzj closed 6 months ago

dcshzj commented 6 months ago

Problem

The month number has an off-by-one error as it is zero-indexed, which means for April, getMonth() will return 3 instead of 4.

Solution

Breaking Changes

Bug Fixes:

Tests

Deploy Notes

None