Don't show large image if it's not available

This commit is contained in:
Evan Prodromou 2011-08-25 11:37:15 -04:00
parent 420e7ddf83
commit 3fbcba40a6
1 changed files with 4 additions and 2 deletions

View File

@ -699,7 +699,7 @@ class ActivityObject
// XXX: Not sure what the best avatar is to use for the
// author's "image". For now, I'm using the large size.
$avatarLarge = null;
$imgLink = null;
$avatarMediaLinks = array();
foreach ($this->avatarLinks as $a) {
@ -724,7 +724,9 @@ class ActivityObject
$object['avatarLinks'] = $avatarMediaLinks; // extension
// image
$object['image'] = $imgLink->asArray();
if (!empty($imgLink)) {
$object['image'] = $imgLink->asArray();
}
}
// objectType