-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Open
Labels
0. Needs triagePending check for reproducibility or if it fits our roadmapPending check for reproducibility or if it fits our roadmapfeature: carddavRelated to CardDAV internalsRelated to CardDAV internalsfeature: contactstechnical debt🧱 🤔🚀🧱 🤔🚀
Description
Other than type all properties are ignored.
server/apps/dav/lib/CardDAV/AddressBookImpl.php
Lines 154 to 167 in 8057615
| foreach ($value as $entry) { | |
| if (is_string($entry)) { | |
| $property = $vCard->createProperty($key, $entry); | |
| } else { | |
| if (($key === "ADR" || $key === "PHOTO") && is_string($entry["value"])) { | |
| $entry["value"] = stripslashes($entry["value"]); | |
| $entry["value"] = explode(';', $entry["value"]); | |
| } | |
| $property = $vCard->createProperty($key, $entry["value"]); | |
| if (isset($entry["type"])) { | |
| $property->add('TYPE', $entry["type"]); | |
| } | |
| } | |
| $vCard->add($property); |
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
0. Needs triagePending check for reproducibility or if it fits our roadmapPending check for reproducibility or if it fits our roadmapfeature: carddavRelated to CardDAV internalsRelated to CardDAV internalsfeature: contactstechnical debt🧱 🤔🚀🧱 🤔🚀