Update AP helpers, ingest attachments in replies

This commit is contained in:
Daniel Supernault 2023-02-02 05:43:08 -07:00
parent 06e9d4df5f
commit c504e6437e
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 3 additions and 0 deletions

View File

@ -496,6 +496,9 @@ class Helpers {
if($reply_to == null) {
self::importNoteAttachment($activity, $status);
} else {
if(isset($activity['attachment']) && !empty($activity['attachment'])) {
self::importNoteAttachment($activity, $status);
}
StatusReplyPipeline::dispatch($status);
}