summaryrefslogtreecommitdiff
path: root/internal/processing/workers/surfacetimeline.go
diff options
context:
space:
mode:
authorLibravatar tobi <tobi.smethurst@protonmail.com>2025-05-02 16:01:30 +0000
committerLibravatar kim <gruf@noreply.codeberg.org>2025-05-02 16:01:30 +0000
commit1480f22aeaac1772bb9a98c0db6e9a13ff2761e1 (patch)
tree90f793c681eeb2cd28d8bdc20a96d150d226fa38 /internal/processing/workers/surfacetimeline.go
parent[bugfix] Fix wrong URI used in dereferenceLocal (#4097) (diff)
downloadgotosocial-1480f22aeaac1772bb9a98c0db6e9a13ff2761e1.tar.xz
[bugfix/chore] Invalidate prepared statuses when account representation changes (#4107)
This pull requests adds logic to invalidate prepared statuses when an account's representation changes due to an update. Closes https://codeberg.org/superseriousbusiness/gotosocial/issues/4104 Reviewed-on: https://codeberg.org/superseriousbusiness/gotosocial/pulls/4107 Co-authored-by: tobi <tobi.smethurst@protonmail.com> Co-committed-by: tobi <tobi.smethurst@protonmail.com>
Diffstat (limited to 'internal/processing/workers/surfacetimeline.go')
-rw-r--r--internal/processing/workers/surfacetimeline.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/internal/processing/workers/surfacetimeline.go b/internal/processing/workers/surfacetimeline.go
index 2046d1995..ebb77b6bb 100644
--- a/internal/processing/workers/surfacetimeline.go
+++ b/internal/processing/workers/surfacetimeline.go
@@ -826,6 +826,12 @@ func (s *Surface) removeTimelineEntriesByAccount(accountID string) {
s.State.Caches.Timelines.List.RemoveByAccountIDs(accountID)
}
+// removeTimelineEntriesByAccount invalidates all cached timeline entries authored by account ID.
+func (s *Surface) invalidateTimelineEntriesByAccount(accountID string) {
+ s.State.Caches.Timelines.Home.UnprepareByAccountIDs(accountID)
+ s.State.Caches.Timelines.List.UnprepareByAccountIDs(accountID)
+}
+
func (s *Surface) removeRelationshipFromTimelines(ctx context.Context, timelineAccountID string, targetAccountID string) {
// Remove all statuses by target account
// from given account's home timeline.