diff options
author | 2024-02-18 10:49:40 +0100 | |
---|---|---|
committer | 2024-02-18 09:49:40 +0000 | |
commit | 40f9eefc2153ee8811abb750e07064c4f98f549c (patch) | |
tree | bc0c26490dea9442025a43833b2c56a831f83ba4 /internal/federation/dereferencing/status.go | |
parent | [chore] Disable Move API endpoints for now until Move is fully implemented in... (diff) | |
download | gotosocial-40f9eefc2153ee8811abb750e07064c4f98f549c.tar.xz |
[bugfix] Fix dereferencing ancestors on new status create (#2652)
* [bugfix] Pass `latest` to dereferenceThread instead of barebones status
* only mark status orphaned if visibility suggests parent is really deleted
* tone down "not deref'd" warnings, since they represent a legit visibility situation
* remove FAQ entry for "status not deref'd yet"
Diffstat (limited to 'internal/federation/dereferencing/status.go')
-rw-r--r-- | internal/federation/dereferencing/status.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/federation/dereferencing/status.go b/internal/federation/dereferencing/status.go index 6d3dd5691..e3f97553d 100644 --- a/internal/federation/dereferencing/status.go +++ b/internal/federation/dereferencing/status.go @@ -222,7 +222,7 @@ func (d *Dereferencer) RefreshStatus( d.dereferenceThread(ctx, requestUser, uri, - status, + latest, statusable, isNew, ) |