mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-10-31 22:40:01 +00:00
[bugfix] Set refetch to true in iterateDescendants (#600)
This commit is contained in:
parent
f0c9f4169b
commit
21557c92d9
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue