fb contacts getting mixed up.

This commit is contained in:
Friendika 2011-05-22 21:47:22 -07:00
parent 5996e2cd4c
commit 3ea145fae7
1 changed files with 5 additions and 1 deletions

View File

@ -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) {