gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 21557c92d9517128e04555d8d36fb92bf7a22331
parent f0c9f4169be6c5c7dd913f348cdd294a19038d63
Author: tobi <31960611+tsmethurst@users.noreply.github.com>
Date:   Tue, 24 May 2022 11:00:37 +0200

[bugfix] Set refetch to true in iterateDescendants (#600)


Diffstat:
Minternal/federation/dereferencing/thread.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/internal/federation/dereferencing/thread.go b/internal/federation/dereferencing/thread.go @@ -219,7 +219,7 @@ pageLoop: foundReplies++ // get the remote statusable and put it in the db - _, statusable, err := d.GetRemoteStatus(ctx, username, itemURI, false, false) + _, statusable, err := d.GetRemoteStatus(ctx, username, itemURI, true, false) if err == nil { // now iterate descendants of *that* status if err := d.iterateDescendants(ctx, username, *itemURI, statusable); err != nil {