base extract.js actually complete

This commit is contained in:
ZervoTheProtogen 2023-08-30 16:19:25 +02:00
parent c97c5f6e1a
commit 8429be8b12
2 changed files with 3 additions and 5 deletions

View file

@ -5,5 +5,3 @@ Parses schoolsoft schedules from 'right_student_schedule.jsp' file into readable
TEMPORARY REPO, WILL REMOVE
CURRENTLY REWRITING ENTIRELY, DONT LOOK AT IT :)
import('https://github.com/ZervoTheProtogen/schoolsoft-schema-parser/blob/main/grab.js')

View file

@ -64,12 +64,12 @@ function extract() {
outEnd = scheduleItemTimesArray[1];
// do calculations for which day it is
let endTrim = outEnd.replace(/:/g,'');
if (endTrim < lastEndtime) {
let startTrim = Number(outStart.replace(/:/g,''));
if (startTrim < lastEndtime) {
console.log(day);
day += 1;
}
lastEndtime = endTrim;
lastEndtime = Number(outEnd.replace(/:/g,''));
switch(day) {
case 1:
outDay = 'mon';