This commit is contained in:
lilyissillyyy
2025-08-16 22:55:16 -04:00
parent 275bc2f965
commit 5afd821533
+1 -1
View File
@@ -18,7 +18,7 @@ module.exports = class JeopardyScrape {
const seasons = [];
$('table td a').each((j, elem) => {
const href = $(elem).attr('href');
seasons.push(href.split('id=')[1]);
seasons.push(href.split('season=')[1]);
});
return seasons.reverse();
}