Index: wp-app.php
===================================================================
--- wp-app.php	(revision 19814)
+++ wp-app.php	(working copy)
@@ -400,8 +400,10 @@
 		log_app('Received entry:', print_r($entry,true));
 
 		$catnames = array();
-		foreach ( $entry->categories as $cat ) {
-			array_push($catnames, $cat["term"]);
+		if ( isset( $entry->categories ) ) {
+			foreach ( $entry->categories as $cat ) {
+				array_push($catnames, $cat["term"]);
+			}
 		}
 
 		$wp_cats = get_categories(array('hide_empty' => false));
@@ -423,10 +425,12 @@
 		$blog_ID = get_current_blog_id();
 		$post_status = ($publish) ? 'publish' : 'draft';
 		$post_author = (int) $user_ID;
-		$post_title = $entry->title[1];
-		$post_content = $entry->content[1];
-		$post_excerpt = $entry->summary[1];
-		$pubtimes = $this->get_publish_time($entry->published);
+		$post_title   = isset( $entry->title )     ? (string) $entry->title[1]   : '';
+		$post_content = isset( $entry->content )   ? (string) $entry->content[1] : '';
+		$post_excerpt = isset( $entry->summary )   ? (string) $entry->summary[1] : '';
+		$pubtimes     = isset( $entry->published ) ? (string) $entry->published  : '' ;
+		$pubtimes     = $this->get_publish_time( $pubtimes );
+
 		$post_date = $pubtimes[0];
 		$post_date_gmt = $pubtimes[1];
 
