oh I see the issue

This commit is contained in:
CatAClock 2025-07-18 10:23:33 -07:00
parent e76788fd48
commit 5e3da9843e

View file

@ -147,7 +147,11 @@ async function Post() {
} }
Post = await BlueskyAPI.GetPosts([Post.uri]); Post = await BlueskyAPI.GetPosts([Post.uri]);
Post = Post.posts[0]; 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. // Youtube posting.