diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-12-22 09:43:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-22 09:43:12 +0100 |
commit | 72fda1033379af8dc8e40c4b89b333ac73c080f0 (patch) | |
tree | af891c06830a5a52b9ff683e7402884325d0a432 /apps/dav | |
parent | 5094e29ebda77f2f071fde349e4ad2a0683fedf8 (diff) | |
parent | 4679e850766766df6a9900014b636659982b8874 (diff) | |
download | nextcloud-server-72fda1033379af8dc8e40c4b89b333ac73c080f0.tar.gz nextcloud-server-72fda1033379af8dc8e40c4b89b333ac73c080f0.zip |
Merge pull request #22085 from nextcloud/enh/index-socialprofile
adding social profile to search index
Diffstat (limited to 'apps/dav')
-rw-r--r-- | apps/dav/lib/CardDAV/CardDavBackend.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/dav/lib/CardDAV/CardDavBackend.php b/apps/dav/lib/CardDAV/CardDavBackend.php index 90ab40c6d1b..51d24351c05 100644 --- a/apps/dav/lib/CardDAV/CardDavBackend.php +++ b/apps/dav/lib/CardDAV/CardDavBackend.php @@ -82,7 +82,8 @@ class CardDavBackend implements BackendInterface, SyncSupport { /** @var array properties to index */ public static $indexProperties = [ 'BDAY', 'UID', 'N', 'FN', 'TITLE', 'ROLE', 'NOTE', 'NICKNAME', - 'ORG', 'CATEGORIES', 'EMAIL', 'TEL', 'IMPP', 'ADR', 'URL', 'GEO', 'CLOUD']; + 'ORG', 'CATEGORIES', 'EMAIL', 'TEL', 'IMPP', 'ADR', 'URL', 'GEO', + 'CLOUD', 'X-SOCIALPROFILE']; /** * @var string[] Map of uid => display name |