diff --git a/server/routes/holidays.js b/server/routes/holidays.js index 3340a29..06b5cd5 100644 --- a/server/routes/holidays.js +++ b/server/routes/holidays.js @@ -16,7 +16,7 @@ router.get("/", function(req, res/*, next*/) { let holidays = [], skip = {}; - moment("2000-01-01", "YYYY-MM-DD").holidaysBetween("2000-12-31").forEach(function(holiday) { + moment("1999-12-31", "YYYY-MM-DD").holidaysBetween("2001-01-01").forEach(function(holiday) { /* Dates with multiple holidays will return an array of items */ let names = holiday.isHoliday(); if (!Array.isArray(names)) {