oh I see the issue
This commit is contained in:
parent
e76788fd48
commit
5e3da9843e
1 changed files with 5 additions and 1 deletions
|
@ -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.
|
||||||
|
|
Loading…
Add table
Reference in a new issue