This commit is contained in:
CatAClock 2025-07-16 19:36:46 -07:00
parent cd2ce6b3b3
commit e6dee7083b

View file

@ -155,7 +155,7 @@ async function GetPost() {
// Now time to see if there are any parents.
let NumberOfThreads = 0;
let TemporaryPost = post;
while (TemporaryPost.reply.parent != null) {
while (TemporaryPost.hasOwnProperty("reply")) {
TemporaryPost = await BlueskyReplyFunction("0", TemporaryPost.reply.parent);
ThreadedPost.push(TemporaryPost);
// Any replies? Give them the thing :3