1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2024-12-10 21:24:33 +01:00

Merge pull request #681 from dirdi/stable7

Use correct method to extract image from vcard
This commit is contained in:
jbtbnl 2014-10-22 10:51:59 +02:00
commit 509b4223ce

View File

@ -311,8 +311,8 @@ Class Properties {
$app = new App();
$vcard = $app->getContact($backendName, $addressBookId, $contactId);
}
$image = $vcard->getPhoto();
if (is_null($image)) {
$image = new \OCP\Image();
if (!isset($vcard->PHOTO) || !$image->loadFromBase64((string)$vcard->PHOTO)) {
return false;
}
}