Update AP helpers, fix fanout scope

This commit is contained in:
Daniel Supernault 2023-11-15 23:43:57 -07:00
parent e1b39bcf6f
commit 33a60e767d
No known key found for this signature in database
GPG Key ID: 23740873EE6F76A1
1 changed files with 5 additions and 1 deletions

View File

@ -538,7 +538,11 @@ class Helpers {
IncrementPostCount::dispatch($pid)->onQueue('low');
FeedInsertRemotePipeline::dispatch($status->id, $pid)->onQueue('feed');
if( $status->in_reply_to_id === null &&
in_array($status->type, ['photo', 'photo:album', 'video', 'video:album', 'photo:video:album'])
) {
FeedInsertRemotePipeline::dispatch($status->id, $pid)->onQueue('feed');
}
return $status;
}