You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now threads often appear incomplete because GtS doesn't fetch any of the previous or next posts in a thread, so users see only fragments of conversations.
To offer a more complete view, we should dereference the whole chain of posts that a given post replies to or is replied to by. But we should only do this for posts that are Public (or possibly Unlisted), and not followers-only posts.
This dereferencing could be done here for example:
Right now threads often appear incomplete because GtS doesn't fetch any of the previous or next posts in a thread, so users see only fragments of conversations.
To offer a more complete view, we should dereference the whole chain of posts that a given post replies to or is replied to by. But we should only do this for posts that are Public (or possibly Unlisted), and not followers-only posts.
This dereferencing could be done here for example:
gotosocial/internal/federation/dereference.go
Line 194 in 0386a28
To figure out where replies etc are, we can use the
replies
field on status activity representations:and the
inReplyTo
field:The text was updated successfully, but these errors were encountered: