Skip to content
Snippets Groups Projects
Unverified Commit 622d0284 authored by Arthur Schiwon's avatar Arthur Schiwon
Browse files

fixes sharing to group ids /w chars that are being url encoded, carddav

parent 9abff14e
No related branches found
No related tags found
No related merge requests found
...@@ -191,9 +191,6 @@ class CardDavBackend implements BackendInterface, SyncSupport { ...@@ -191,9 +191,6 @@ class CardDavBackend implements BackendInterface, SyncSupport {
$principals = $this->principalBackend->getGroupMembership($principalUriOriginal, true); $principals = $this->principalBackend->getGroupMembership($principalUriOriginal, true);
$principals = array_merge($principals, $this->principalBackend->getCircleMembership($principalUriOriginal)); $principals = array_merge($principals, $this->principalBackend->getCircleMembership($principalUriOriginal));
$principals = array_map(function ($principal) {
return urldecode($principal);
}, $principals);
$principals[] = $principalUri; $principals[] = $principalUri;
$query = $this->db->getQueryBuilder(); $query = $this->db->getQueryBuilder();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment