summaryrefslogtreecommitdiff
path: root/internal/federation/dereferencing/thread.go
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2022-05-24 11:00:37 +0200
committerLibravatar GitHub <noreply@github.com>2022-05-24 11:00:37 +0200
commit21557c92d9517128e04555d8d36fb92bf7a22331 (patch)
tree33b94f7c471ba70dfd6fb2301735addcd9e07601 /internal/federation/dereferencing/thread.go
parent[bugfix] Fix multiple dereferences of boosted status causing media duplicatio... (diff)
downloadgotosocial-21557c92d9517128e04555d8d36fb92bf7a22331.tar.xz
[bugfix] Set refetch to true in iterateDescendants (#600)
Diffstat (limited to 'internal/federation/dereferencing/thread.go')
-rw-r--r--internal/federation/dereferencing/thread.go2
1 files changed, 1 insertions, 1 deletions
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 @@ 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 {