mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-12-16 17:23:00 -06:00
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
This commit is contained in:
parent
a7882fabc7
commit
3caae376e7
10 changed files with 208 additions and 50 deletions
|
|
@ -37,7 +37,7 @@ func (p *processor) StreamDelete(statusID string) error {
|
|||
|
||||
// stream the delete to every account
|
||||
for _, accountID := range accountIDs {
|
||||
if err := p.streamToAccount(statusID, stream.EventTypeDelete, accountID); err != nil {
|
||||
if err := p.streamToAccount(statusID, stream.EventTypeDelete, stream.AllStatusTimelines, accountID); err != nil {
|
||||
errs = append(errs, err.Error())
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue