summaryrefslogtreecommitdiff
path: root/internal/processing/streaming/update.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/processing/streaming/update.go')
-rw-r--r--internal/processing/streaming/update.go4
1 files changed, 2 insertions, 2 deletions
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)
}