This commit is contained in:
CatAClock 2025-07-16 17:48:42 -07:00
parent 311d9cb57f
commit 9ad85e98a0

View file

@ -123,7 +123,10 @@ async function GetPost() {
}
}
// Any replies? Give them the thing :3
for (let i of document.getElementsByClassName("body").hasAttribute("id")) {
for (let i of document.getElementsByTagName("body").children)) {
if (i.hasAttribute("id")) {
break;
}
let TempID = i.getAttribute("id");
i.onclick = (event) => {
SetThreadPost(ThreadedPost[TempID], i);