Skip to content

Commit

Permalink
fix: empty featured image issue
Browse files Browse the repository at this point in the history
  • Loading branch information
girishpanchal30 committed Jan 6, 2025
1 parent 03aabb2 commit e50435d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/admin/services/class-rop-webhook-service.php
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ function( $header ) {
'postId' => isset( $post_details['post_id'] ) ? $post_details['post_id'] : '',
'message' => isset( $post_details['content'] ) ? $post_details['content'] : '',
'postUrl' => isset( $post_details['post_url'] ) ? $post_details['post_url'] : '',
'featuredImage' => isset( $post_details['featured_image'] ) ? $post_details['featured_image'] : '',
'featuredImage' => isset( $post_details['post_image'] ) ? $post_details['post_image'] : '',
);

if ( ! class_exists( 'ROP_Pro_Webhook_Helper' ) ) {
Expand Down

0 comments on commit e50435d

Please sign in to comment.