From 1ce3dea4c356177c076543ed59eaa0f4d2d0e887 Mon Sep 17 00:00:00 2001 From: CatAClock Date: Wed, 16 Jul 2025 19:12:32 -0700 Subject: [PATCH] a --- src/HTTP/JS/expanded.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/HTTP/JS/expanded.js b/src/HTTP/JS/expanded.js index f5826b4..af0104a 100644 --- a/src/HTTP/JS/expanded.js +++ b/src/HTTP/JS/expanded.js @@ -154,10 +154,10 @@ async function GetPost() { SetBoost(); // Now time to see if there are any parents. if (post.hasOwnProperty("reply")) { - Parentpost = await BlueskyReplyFunction("0", post.reply.parent, post.reply.parent.author); + let TemporaryPost = await BlueskyReplyFunction("0", post.reply.parent, post.reply.parent.author); // Now time to see if there are any grandparents. - if (Parentpost.value.hasOwnProperty("reply")) { - GrandParentpost = await BlueskyReplyFunction("1", Parentpost.value.reply.parent, post.reply.grandparentAuthor); + if (TemporaryPost.value.hasOwnProperty("reply")) { + TemporaryPost = await BlueskyReplyFunction("1", TemporaryPost.value.reply.parent, post.reply.grandparentAuthor); } } } else {