From 3ea145fae7defaf959b04797afc8482bd0190352 Mon Sep 17 00:00:00 2001 From: Friendika Date: Sun, 22 May 2011 21:47:22 -0700 Subject: [PATCH] fb contacts getting mixed up. --- addon/facebook/facebook.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/addon/facebook/facebook.php b/addon/facebook/facebook.php index 9410b73dc..eba9d04b9 100644 --- a/addon/facebook/facebook.php +++ b/addon/facebook/facebook.php @@ -700,13 +700,17 @@ function fb_consume_stream($uid,$j,$wall = false) { ); if(count($r)) $orig_post = $r[0]; - } if(isset($entry->likes) && isset($entry->likes->data)) $likers = $entry->likes->data; + else + $likers = null; + if(isset($entry->comments) && isset($entry->comments->data)) $comments = $entry->comments->data; + else + $comments = null; if(is_array($likers)) { foreach($likers as $likes) {