diff --git a/internal/processing/fromcommon.go b/internal/processing/fromcommon.go index 8614f09..e10f754 100644 --- a/internal/processing/fromcommon.go +++ b/internal/processing/fromcommon.go @@ -389,6 +389,15 @@ func (p *processor) timelineStatusForAccount(status *gtsmodel.Status, accountID } } } + + mastoStatus, err := p.tc.StatusToMasto(status, timelineAccount) + if err != nil { + errors <- fmt.Errorf("timelineStatusForAccount: error converting status %s to frontend representation: %s", status.ID, err) + } else { + if err := p.streamingProcessor.StreamStatusToAccount(mastoStatus, timelineAccount); err != nil { + errors <- fmt.Errorf("timelineStatusForAccount: error streaming status %s: %s", status.ID, err) + } + } } func (p *processor) deleteStatusFromTimelines(status *gtsmodel.Status) error {