updated plugin ActivityPub version 9.1.0

This commit is contained in:
2026-07-28 15:03:10 +00:00
committed by Gitium
parent bf428f0e45
commit ff806e1811
217 changed files with 6098 additions and 3025 deletions

View File

@ -433,7 +433,7 @@ class Inbox_Controller extends \WP_REST_Controller {
if ( ! is_same_domain( $recipient ) ) {
// Known followers collection: resolve from local DB, no fetch needed.
if ( $recipient === $actor_followers_url ) {
$user_ids = array_merge( $user_ids, Following::get_follower_ids( $actor_uri ) );
$user_ids = \array_merge( $user_ids, Following::get_follower_ids( $actor_uri ) );
continue;
}
@ -473,7 +473,7 @@ class Inbox_Controller extends \WP_REST_Controller {
}
if ( is_collection( $collection ) ) {
$user_ids = array_merge( $user_ids, Following::get_follower_ids( $actor_uri ) );
$user_ids = \array_merge( $user_ids, Following::get_follower_ids( $actor_uri ) );
continue;
}
}
@ -500,7 +500,7 @@ class Inbox_Controller extends \WP_REST_Controller {
}
}
return array_unique( array_map( 'intval', $user_ids ) );
return \array_unique( \array_map( 'intval', $user_ids ) );
}
/**