Skip to content

Commit

Permalink
fix #480
Browse files Browse the repository at this point in the history
  • Loading branch information
pfefferle committed Jul 8, 2024
1 parent 7ab2218 commit 8e80450
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions includes/class-receiver.php
Original file line number Diff line number Diff line change
Expand Up @@ -653,6 +653,10 @@ public static function default_commentdata( $commentdata ) {

$response = Request::get( $commentdata['source'] );

if ( ! $response || is_wp_error( $response ) ) {
return $response;
}

$handler = new Handler();
$item = $handler->parse_aggregated( $response, $commentdata['target'] );

Expand Down

0 comments on commit 8e80450

Please sign in to comment.