fixing posponded games

This commit is contained in:
Kfir Dayan 2023-08-21 09:35:44 +03:00
parent 5588c999a7
commit b07d434bf3
2 changed files with 8 additions and 1 deletions

4
dist/GameSource.js vendored
View file

@ -28,6 +28,9 @@ class GameSource {
const headerSplit = gameHeader.split(",");
// In data, if there is no time, it means it's the last game for the calender
const lastGameForCalender = headerSplit.length < 4;
const location = headerSplit[headerSplit.length - 1].trim();
if (location === 'נדחה')
continue;
if (lastGameForCalender)
break;
const gameDate = this.findDate(headerSplit);
@ -50,6 +53,7 @@ class GameSource {
},
});
}
// return [];
return games;
}
findTime(headerSplit) {

View file

@ -29,9 +29,11 @@ export default class GameSource {
// In data, if there is no time, it means it's the last game for the calender
const lastGameForCalender = headerSplit.length < 4;
const location = headerSplit[headerSplit.length - 1].trim();
if (location === 'נדחה') continue;
if (lastGameForCalender) break;
const gameDate = this.findDate(headerSplit);
const gameTime = this.findTime(headerSplit);
@ -57,6 +59,7 @@ export default class GameSource {
},
});
}
// return [];
return games;
}