diff --git a/includes/class-syndication-wp-rss-client.php b/includes/class-syndication-wp-rss-client.php
index 2fe97f63d2b9fec358c9ab64cd53ab9ed4be09c8..c986afb2931ce0ebdd603cec2981bba1fed51534 100644
--- a/includes/class-syndication-wp-rss-client.php
+++ b/includes/class-syndication-wp-rss-client.php
@@ -180,7 +180,7 @@ class Syndication_WP_RSS_Client extends SimplePie implements Syndication_Client
                 'post_guid'         => $item->get_id()
             );
 			// This filter can be used to exclude or alter posts during a pull import
-			$post = apply_filters( 'syn_rss_pull_filter_post', $post, $args );
+			$post = apply_filters( 'syn_rss_pull_filter_post', $post, $args, $item );
 			if ( false === $post )
 				continue;
 			$posts[] = $post;