From 3caae376e77a270f57733093163eafa3db8c71bc Mon Sep 17 00:00:00 2001 From: tobi <31960611+tsmethurst@users.noreply.github.com> Date: Mon, 22 Nov 2021 19:03:21 +0100 Subject: Fix streamed messages ending up in wrong timeline(s) (#325) * define timeline consts * remove double stream of status * change test stream creation up a bit * stream messages more selectively * add test for streaming new status creation via clientAPI * tidy code + comments a bit * tidy up tests * make sure new status isn't streamed to public --- internal/processing/streaming/update.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/processing/streaming/update.go') diff --git a/internal/processing/streaming/update.go b/internal/processing/streaming/update.go index da7dcb6ce..bd7bb0b12 100644 --- a/internal/processing/streaming/update.go +++ b/internal/processing/streaming/update.go @@ -27,11 +27,11 @@ import ( "github.com/superseriousbusiness/gotosocial/internal/stream" ) -func (p *processor) StreamUpdateToAccount(s *apimodel.Status, account *gtsmodel.Account) error { +func (p *processor) StreamUpdateToAccount(s *apimodel.Status, account *gtsmodel.Account, timeline string) error { bytes, err := json.Marshal(s) if err != nil { return fmt.Errorf("error marshalling status to json: %s", err) } - return p.streamToAccount(string(bytes), stream.EventTypeUpdate, account.ID) + return p.streamToAccount(string(bytes), stream.EventTypeUpdate, []string{timeline}, account.ID) } -- cgit v1.2.3