Skip to content

Commit a6a75b2

Browse files
fix: Nodejs switch to use decimal instead of octal
1 parent f2a4952 commit a6a75b2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/app.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ const untis = new WebUntis(
3434

3535
const [timetable, exams] = await Promise.all([
3636
untis.getOwnTimetableForRange(
37-
new Date(2024, 09 - 1, 02),
38-
new Date(2025, 02 - 1, 02)
37+
new Date(2024, 9 - 1, 2),
38+
new Date(2025, 2 - 1, 2)
3939
),
4040
untis.getExamsForRange(new Date(2024, 0, 21), new Date(2024, 5, 27)),
4141
]);

0 commit comments

Comments
 (0)