diff options
author | 2022-05-24 11:00:37 +0200 | |
---|---|---|
committer | 2022-05-24 11:00:37 +0200 | |
commit | 21557c92d9517128e04555d8d36fb92bf7a22331 (patch) | |
tree | 33b94f7c471ba70dfd6fb2301735addcd9e07601 /internal/federation/dereferencing/thread.go | |
parent | [bugfix] Fix multiple dereferences of boosted status causing media duplicatio... (diff) | |
download | gotosocial-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.go | 2 |
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 { |