diff options
Diffstat (limited to 'internal/processing/status/fave.go')
-rw-r--r-- | internal/processing/status/fave.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/processing/status/fave.go b/internal/processing/status/fave.go index 42fcb5220..1b40d9da1 100644 --- a/internal/processing/status/fave.go +++ b/internal/processing/status/fave.go @@ -84,13 +84,13 @@ func (p *processor) Fave(ctx context.Context, requestingAccount *gtsmodel.Accoun } // send it back to the processor for async processing - p.fromClientAPI <- messages.FromClientAPI{ + p.clientWorker.Queue(messages.FromClientAPI{ APObjectType: ap.ActivityLike, APActivityType: ap.ActivityCreate, GTSModel: gtsFave, OriginAccount: requestingAccount, TargetAccount: targetStatus.Account, - } + }) } // return the apidon representation of the target status |