revert scheduler/dispatcher changes

This commit is contained in:
Matthias Pfefferle 2023-06-30 16:08:28 +02:00
parent ced8cd0e29
commit f207089269

View file

@ -82,9 +82,7 @@ class Scheduler {
return;
}
// send User activities
if ( ! is_user_disabled( $post->post_author ) ) {
$activitypub_post = new Post( $post );
$activitypub_post = new Post( $post, Users::BLOG_USER_ID );
\wp_schedule_single_event(
\time(),
@ -102,27 +100,6 @@ class Scheduler {
);
}
// send Blog-User activities
if ( ! is_user_disabled( User_Factory::BLOG_USER_ID ) ) {
$activitypub_post = new Post( $post, User_Factory::BLOG_USER_ID );
\wp_schedule_single_event(
\time(),
'activitypub_send_activity',
array( $activitypub_post, $type )
);
\wp_schedule_single_event(
\time(),
sprintf(
'activitypub_send_%s_activity',
\strtolower( $type )
),
array( $activitypub_post )
);
}
}
/**
* Update followers
*