mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-30 23:12:25 -05: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
				
			
		|  | @ -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) | ||||
| } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue