Use correct class.
This commit is contained in:
parent
db5b995a6b
commit
a75870489c
2 changed files with 10 additions and 2 deletions
|
@ -49,10 +49,14 @@ if(!$id) {
|
|||
exit();
|
||||
}
|
||||
|
||||
$lastmodified = OC_Contacts_App::lastModified($vcard);
|
||||
if(!$lastmodified) {
|
||||
$lastmodified = new DateTime();
|
||||
}
|
||||
OCP\JSON::success(array(
|
||||
'data' => array(
|
||||
'id' => $id,
|
||||
'aid' => $aid,
|
||||
'lastmodified' => OC_Contacts_VCard::lastModified($vcard)->format('U')
|
||||
'lastmodified' => $lastmodified->format('U')
|
||||
)
|
||||
));
|
||||
|
|
|
@ -50,9 +50,13 @@ if(isset($details['PHOTO'])) {
|
|||
} else {
|
||||
$details['PHOTO'] = false;
|
||||
}
|
||||
$lastmodified = OC_Contacts_App::lastModified($vcard);
|
||||
if(!$lastmodified) {
|
||||
$lastmodified = new DateTime();
|
||||
}
|
||||
$details['id'] = $id;
|
||||
$details['displayname'] = $card['fullname'];
|
||||
$details['addressbookid'] = $card['addressbookid'];
|
||||
$details['lastmodified'] = OC_Contacts_App::lastModified($vcard)->format('U');
|
||||
$details['lastmodified'] = $lastmodified->format('U');
|
||||
OC_Contacts_App::setLastModifiedHeader($vcard);
|
||||
OCP\JSON::success(array('data' => $details));
|
||||
|
|
Loading…
Reference in a new issue