From 5afd821533a31381bea35b5946a88a5e9c3cfb68 Mon Sep 17 00:00:00 2001 From: lilyissillyyy Date: Sat, 16 Aug 2025 22:55:16 -0400 Subject: [PATCH] Fix --- structures/JeopardyScrape.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structures/JeopardyScrape.js b/structures/JeopardyScrape.js index da1fb381..51ce2b36 100644 --- a/structures/JeopardyScrape.js +++ b/structures/JeopardyScrape.js @@ -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(); }