From ff2d4b0ad256b5ae49343ac1a9bb093f62063597 Mon Sep 17 00:00:00 2001 From: Jacob Strieb Date: Sun, 8 Jan 2023 21:34:02 -0500 Subject: [PATCH] Fix link selector --- add-latest.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/add-latest.js b/add-latest.js index 94bd358..508e066 100644 --- a/add-latest.js +++ b/add-latest.js @@ -15,7 +15,7 @@ * the Bloom filter was downloaded. */ function sendLatest() { - let stories = Array.from(document.querySelectorAll(".titlelink")); + let stories = Array.from(document.querySelectorAll(".titleline > a")); let scoreParents = Array.from(document.querySelectorAll(".subtext")); if (stories.length != scoreParents.length) { console.error("Different number of story links and scores!");