diff --git a/includes/admin/feedzy-rss-feeds-import.php b/includes/admin/feedzy-rss-feeds-import.php index ae9301f7..a645d0f8 100644 --- a/includes/admin/feedzy-rss-feeds-import.php +++ b/includes/admin/feedzy-rss-feeds-import.php @@ -1023,6 +1023,9 @@ private function get_complete_import_status( $post_id ) { if ( $items ) { $status['cumulative'] = count( $items ); } + if ( ! empty( $status['duplicates'] ) ) { + $status['total'] = absint( $status['total'] - count( $status['duplicates'] ) ); + } return $status; }