From 5e3da9843e2ae2e3963eb37d6a455983f601b177 Mon Sep 17 00:00:00 2001 From: CatAClock Date: Fri, 18 Jul 2025 10:23:33 -0700 Subject: [PATCH] oh I see the issue --- src/HTTP/JS/post.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/HTTP/JS/post.js b/src/HTTP/JS/post.js index 517c167..f54e084 100644 --- a/src/HTTP/JS/post.js +++ b/src/HTTP/JS/post.js @@ -147,7 +147,11 @@ async function Post() { } Post = await BlueskyAPI.GetPosts([Post.uri]); Post = Post.posts[0]; - await BlueskyAPI.CreatePost(localStorage.getItem(Variables.BlueskyDID), Textures, undefined, [], Post, Post.reply.root, true); + if (Post.hasOwnProperty("reply")) { + await BlueskyAPI.CreatePost(localStorage.getItem(Variables.BlueskyDID), Textures, undefined, Tags, Post, Post.reply.root, true); + } else { + await BlueskyAPI.CreatePost(localStorage.getItem(Variables.BlueskyDID), Textures, undefined, Tags, Post, Post, true); + } } } // Youtube posting.