diff options
| author | 2025-05-06 14:19:58 +0000 | |
|---|---|---|
| committer | 2025-05-06 14:19:58 +0000 | |
| commit | ebf64eb0db2074e73ae681cb2174d8ae97316746 (patch) | |
| tree | afc8ec2684a523188e109e89e4e16ab655377633 | |
| parent | [bugfix] ensure timeline limit query is respected (#4141) (diff) | |
| download | gotosocial-ebf64eb0db2074e73ae681cb2174d8ae97316746.tar.xz | |
[bugfix] fix statuses not being notified (#4143)
It was the colon what done it muy lorde
Reviewed-on: https://codeberg.org/superseriousbusiness/gotosocial/pulls/4143
Co-authored-by: tobi <tobi.smethurst@protonmail.com>
Co-committed-by: tobi <tobi.smethurst@protonmail.com>
| -rw-r--r-- | internal/processing/workers/surfacetimeline.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/processing/workers/surfacetimeline.go b/internal/processing/workers/surfacetimeline.go index ebb77b6bb..018ef976e 100644 --- a/internal/processing/workers/surfacetimeline.go +++ b/internal/processing/workers/surfacetimeline.go @@ -161,7 +161,7 @@ func (s *Surface) timelineAndNotifyStatusForFollowers( // Add status to home timeline for owner of // this follow (origin account), if applicable. - if homeTimelined := s.timelineStatus(ctx, + if homeTimelined = s.timelineStatus(ctx, s.State.Caches.Timelines.Home.MustGet(follow.AccountID), follow.Account, status, |
