diff --git a/includes/class-syndication-wp-xmlrpc-client.php b/includes/class-syndication-wp-xmlrpc-client.php index f54391be91e6159cebe7a8bb7f5383a9383efe40..8a6a1f299402b01a129d92e2d3a3a1a65696c952 100644 --- a/includes/class-syndication-wp-xmlrpc-client.php +++ b/includes/class-syndication-wp-xmlrpc-client.php @@ -77,8 +77,6 @@ class Syndication_WP_XMLRPC_Client extends WP_HTTP_IXR_Client implements Syndica if( !$result ) return false; - $this->manage_thumbnails( $post_ID ); - return $result; } @@ -119,9 +117,6 @@ class Syndication_WP_XMLRPC_Client extends WP_HTTP_IXR_Client implements Syndica return false; } - - $this->manage_thumbnails( $post_ID ); - return true; } diff --git a/includes/class-wp-push-syndication-server.php b/includes/class-wp-push-syndication-server.php index 36252a1a0c5bb6d303461eeb829cb504118268ff..bf9ec0cabcdcf8a749e868ea3712e7de1b37c4b7 100644 --- a/includes/class-wp-push-syndication-server.php +++ b/includes/class-wp-push-syndication-server.php @@ -864,6 +864,8 @@ class WP_Push_Syndication_Server { $this->validate_result_edit_post( $result, $info, $slave_post_states, $site->ID, $client ); } + // TODO: manage thumbnails + } }