revert scheduler/dispatcher changes
This commit is contained in:
parent
ced8cd0e29
commit
f207089269
1 changed files with 14 additions and 37 deletions
|
@ -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
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue