[bugfix] Set refetch to true in iterateDescendants (#600)
This commit is contained in:
parent
f0c9f4169b
commit
21557c92d9
|
@ -219,7 +219,7 @@ pageLoop:
|
||||||
foundReplies++
|
foundReplies++
|
||||||
|
|
||||||
// get the remote statusable and put it in the db
|
// 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 {
|
if err == nil {
|
||||||
// now iterate descendants of *that* status
|
// now iterate descendants of *that* status
|
||||||
if err := d.iterateDescendants(ctx, username, *itemURI, statusable); err != nil {
|
if err := d.iterateDescendants(ctx, username, *itemURI, statusable); err != nil {
|
||||||
|
|
Loading…
Reference in New Issue