We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi! Working on a Bluesky client with FishyFlip here. See title. I need to be able to fetch the parent of a post with
var result = (await atProto.AtProtocol.Feed.GetPostThreadAsync(post.PostUri)).HandleResult(); var parent = result.Thread.Parent;
but Parent does not exist on ThreadView (see here). This led me down a very annoying logic bug with reply refs :(.
Parent
ThreadView
The text was updated successfully, but these errors were encountered:
Yep, it wasn't in the object. Good news is that it's easy to add,
d07d070
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Hi! Working on a Bluesky client with FishyFlip here. See title. I need to be able to fetch the parent of a post with
but
Parent
does not exist onThreadView
(see here). This led me down a very annoying logic bug with reply refs :(.The text was updated successfully, but these errors were encountered: