소스 검색

Delay fetching of carddata and set ETag and size instead.

tags/v4.5.0beta1
Thomas Tanghus 12 년 전
부모
커밋
f5c329af98
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3
    1
      apps/contacts/lib/connector_sabre.php

+ 3
- 1
apps/contacts/lib/connector_sabre.php 파일 보기

@@ -138,8 +138,10 @@ class OC_Connector_Sabre_CardDAV extends Sabre_CardDAV_Backend_Abstract {
foreach($data as $i){
$cards[] = array(
'id' => $i['id'],
'carddata' => $i['carddata'],
//'carddata' => $i['carddata'],
'uri' => $i['uri'],
'size' => strlen($i['carddata']),
'etag' => md5($i['carddata']),
'lastmodified' => $i['lastmodified'] );
}


Loading…
취소
저장