diff --git a/scrape/parse/v3.js b/scrape/parse/v3.js index 83b630a..bbee069 100644 --- a/scrape/parse/v3.js +++ b/scrape/parse/v3.js @@ -167,7 +167,7 @@ function buildLessonArray(row, ignoreAddress) { }); const normalized = Array.from(lessons, (x) => (x === undefined ? null : x)); - while (normalized.length < 10) normalized.push(null); + while (normalized.length < 11) normalized.push(null); return normalized.slice(1, 11); } @@ -298,4 +298,4 @@ function formatNowTime() { ); } -//parseV3("db/current.xlsx") +parseV3("db/current.xlsx")