i
This commit is contained in:
parent
602a1a551b
commit
755e4f8d9f
1 changed files with 7 additions and 7 deletions
|
@ -123,15 +123,15 @@ async function GetPost() {
|
|||
}
|
||||
}
|
||||
// Any replies? Give them the thing :3
|
||||
for (let i of document.getElementsByTagName("body")[0].children) {
|
||||
if (i.hasAttribute("id")) {
|
||||
break;
|
||||
}
|
||||
let TempID = i.getAttribute("id");
|
||||
let TempID = 0;
|
||||
while (TempID != (NumberOfThreads - 1)) {
|
||||
for (let i of document.getElementsByClassName(NumberOfThreads.toString())) {
|
||||
i.onclick = (event) => {
|
||||
SetThreadPost(ThreadedPost[TempID], i);
|
||||
}
|
||||
}
|
||||
TempID += 1;
|
||||
}
|
||||
} else if (website == "Bluesky") {
|
||||
// Check for a reblog.
|
||||
if (post.hasOwnProperty("reason") && post.reason.$type == "app.bsky.feed.defs#reasonRepost") {
|
||||
|
|
Loading…
Add table
Reference in a new issue