use original application if available
This commit is contained in:
parent
5a23440fb4
commit
2b11ff65dc
1 changed files with 4 additions and 2 deletions
|
@ -816,8 +816,10 @@ function fb_consume_stream($uid,$j,$wall = false) {
|
||||||
$datarray['owner-link'] = $self[0]['url'];
|
$datarray['owner-link'] = $self[0]['url'];
|
||||||
$datarray['owner-avatar'] = $self[0]['thumb'];
|
$datarray['owner-avatar'] = $self[0]['thumb'];
|
||||||
}
|
}
|
||||||
|
if(isset($entry->application) && isset($entry->application->name) && strlen($entry->application->name))
|
||||||
$datarray['app'] = 'facebook';
|
$datarray['app'] = $entry->application->name;
|
||||||
|
else
|
||||||
|
$datarray['app'] = 'facebook';
|
||||||
$datarray['author-name'] = $from->name;
|
$datarray['author-name'] = $from->name;
|
||||||
$datarray['author-link'] = 'http://facebook.com/profile.php?id=' . $from->id;
|
$datarray['author-link'] = 'http://facebook.com/profile.php?id=' . $from->id;
|
||||||
$datarray['author-avatar'] = 'https://graph.facebook.com/' . $from->id . '/picture';
|
$datarray['author-avatar'] = 'https://graph.facebook.com/' . $from->id . '/picture';
|
||||||
|
|
Loading…
Reference in a new issue