From 21557c92d9517128e04555d8d36fb92bf7a22331 Mon Sep 17 00:00:00 2001 From: tobi <31960611+tsmethurst@users.noreply.github.com> Date: Tue, 24 May 2022 11:00:37 +0200 Subject: [PATCH] [bugfix] Set refetch to true in iterateDescendants (#600) --- internal/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 index 469defd5e..4e161952d 100644 --- a/internal/federation/dereferencing/thread.go +++ b/internal/federation/dereferencing/thread.go @@ -219,7 +219,7 @@ func (d *deref) iterateDescendants(ctx context.Context, username string, statusI 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 {